Mercurial > hg
view tests/test-execute-bit @ 5977:e82dd2dd6276
fix markup of templates/{,old/}header.tmpl
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Sun, 03 Feb 2008 21:03:46 -0200 |
parents | bf2bb53e5d2b |
children | 363ba35f55bd |
line wrap: on
line source
#!/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