diff options
author | sven.panne@aedion.de <unknown> | 2007-08-25 19:32:16 +0000 |
---|---|---|
committer | sven.panne@aedion.de <unknown> | 2007-08-25 19:32:16 +0000 |
commit | e97891e69706e84761c6bcac783526f9dafe7f2e (patch) | |
tree | c25ab78fed85992886a3b1bb37f278143fe33cff /boot | |
parent | 269ade3ebc4b3a7245825281e50e76e0020c2ce6 (diff) | |
download | haskell-e97891e69706e84761c6bcac783526f9dafe7f2e.tar.gz |
Be more flexible when trying to make scripts executable
Diffstat (limited to 'boot')
-rw-r--r-- | boot | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -25,4 +25,6 @@ for dir in . libraries/*; do done # Alas, darcs doesn't handle file permissions, so fix a few of them. -chmod +x boot darcs-all push-all +for f in boot darcs-all push-all validate; do + test -f $f && chmod +x $f +done |