##// END OF EJS Templates
contrib: don't hardcode path to bash interpreter...
contrib: don't hardcode path to bash interpreter Use the env binary to figure out the correct bash to use. Certain systems ships with an ancient version of bash, but the user might have installed a newer one that is earlier in $PATH. For example the current version of Mac OS X ships version 3.2.51 of bash, which does not understand new fancy builtins such as readarray. A user might install a newer version of bash, use that as their shell and add that path before bin.

File last commit:

r14119:624e5ce6 default
r20831:864c56cb default
Show More
rebase.sh
44 lines | 476 B | application/x-sh | BashLexer
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118 #!/bin/bash
hg init rebase
cd rebase
Nicolas Dumazet
tests: upgrade bundles/rebase.hg to support test-rebase-collapse...
r14119 # @ 7: 'H'
# |
# | o 6: 'G'
# |/|
# o | 5: 'F'
# | |
# | o 4: 'E'
# |/
# | o 3: 'D'
# | |
# | o 2: 'C'
# | |
# | o 1: 'B'
# |/
# o 0: 'A'
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118 echo A > A
hg ci -Am A
echo B > B
hg ci -Am B
echo C > C
hg ci -Am C
echo D > D
hg ci -Am D
Nicolas Dumazet
tests: upgrade bundles/rebase.hg to support test-rebase-collapse...
r14119 hg up -q -C 0
echo E > E
hg ci -Am E
hg up -q -C 0
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118 echo F > F
hg ci -Am F
Nicolas Dumazet
tests: upgrade bundles/rebase.hg to support test-rebase-collapse...
r14119 hg merge -r 4
hg ci -m G
hg up -q -C 5
echo H > H
hg ci -Am H
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118
hg bundle -a ../rebase.hg
cd ..
rm -Rf rebase