##// END OF EJS Templates
Declare bzr TERM=dumb to silence progress bars...
Declare bzr TERM=dumb to silence progress bars In theory, one could set BZR_PROGRESS_BAR=none but it does not work in 1.14rc2

File last commit:

r8167:6c82beaa default
r8211:5b4ff21c default
Show More
test-dispatch
27 lines | 283 B | text/plain | TextLexer
#!/bin/sh
# test command parsing and dispatch
"$TESTDIR/hghave" no-outer-repo || exit 80
hg init a
cd a
echo a > a
hg ci -Ama
echo "# missing arg"
hg cat
echo '% [defaults]'
hg cat a
cat >> $HGRCPATH <<EOF
[defaults]
cat = -v
EOF
hg cat a
echo '% no repo'
cd ..
hg cat
exit 0