1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/env bash
. lib
. httplib
# this should all work without a cache
if ! grep no-cache $HOME/.darcs/defaults; then
echo ALL no-cache >> $HOME/.darcs/defaults
fi
rm -rf tabular
unpack_testdata tabular
serve_http # sets baseurl
rm -rf temp2 temp3
darcs clone --lazy $baseurl/tabular temp2
darcs clone --lazy --tag . $baseurl/tabular temp3
cd temp2
darcs obliterate --from-tag . -a
darcs pull --tag . -a
cd ..
diff -u temp2/_darcs/hashed_inventory temp3/_darcs/hashed_inventory
|