From e97891e69706e84761c6bcac783526f9dafe7f2e Mon Sep 17 00:00:00 2001 From: "sven.panne@aedion.de" Date: Sat, 25 Aug 2007 19:32:16 +0000 Subject: [PATCH] Be more flexible when trying to make scripts executable --- boot | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/boot b/boot index be9291d..1889e8c 100644 --- a/boot +++ b/boot @@ -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 -- 1.7.10.4