repo.or.cz
/
git-darcs-import.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Follow upstream changes -- rest
[git-darcs-import.git]
/
tests
/
dist.sh
blob
26e6a56fc5fc6f4afbb941dd83531155d944e311
1
#!/usr/bin/env bash
2
set -ev
3
4
not
() {
"$@"
&&
exit
1
||
:; }
5
6
rm
-rf
temp1
7
mkdir temp1
8
cd
temp1
9
darcs init
10
touch
foo
11
darcs add foo
12
darcs record
-a -m
add_foo |
grep
-i
"finished recording"
13
darcs dist
14
cd
..
15
16
rm
-rf
temp1