darcs-2.10.0: tests/dist-v.sh
#!/usr/bin/env bash
. ./lib
# tests for "darcs dist"
not () { "$@" && exit 1 || :; }
rm -rf temp1
mkdir temp1
cd temp1
darcs init
# needs fixed on FreeBSD
darcs dist -v 2> log
not grep error log
cd ..
rm -rf temp1
#!/usr/bin/env bash
. ./lib
# tests for "darcs dist"
not () { "$@" && exit 1 || :; }
rm -rf temp1
mkdir temp1
cd temp1
darcs init
# needs fixed on FreeBSD
darcs dist -v 2> log
not grep error log
cd ..
rm -rf temp1