Find git executable at run time
[git-darcs-import.git] / tests / what_sl.sh
blobc178fda582bbbb86514f6bbeec03df4c6ed3bf10
1 #!/usr/bin/env bash
3 set -ev
5 rm -rf temp1
6 mkdir temp1
7 cd temp1
8 darcs init
9 touch foo
10 darcs add foo
11 darcs rec -m t1 -a -A tester
12 echo 1 >> foo
13 darcs what -s | grep -v No\ changes
14 darcs what -l | grep -v No\ changes
15 darcs what -sl | grep -v No\ changes
17 cd ..
18 rm -rf temp1