File: clone.sh

package info (click to toggle)
darcs 2.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,960 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 8
file content (24 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (2)
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