##// END OF EJS Templates
patch: handle empty vs no file in git patches (issue906)
patch: handle empty vs no file in git patches (issue906)

File last commit:

r5495:363ba35f default
r5852:03ce5a91 default
Show More
test-execute-bit
13 lines | 193 B | text/plain | TextLexer
#!/bin/sh
hg init
echo a > a
hg ci -d'0 0' -Am'not executable'
chmod +x a
hg ci -d'1 0' -m'executable'
hg id
hg up 0
hg id
test -x a && echo executable -- eek || echo not executable -- whew