From ca3d9a7b9372ffe844c267c6e5034ee0313c281c Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 21 Sep 2008 11:15:08 +0000 Subject: [PATCH] Make "sh -e boot" work --- boot | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/boot b/boot index 38d2cb5..18a083e 100644 --- a/boot +++ b/boot @@ -25,6 +25,9 @@ done # Alas, darcs doesn't handle file permissions, so fix a few of them. for f in boot darcs-all push-all validate do - test -f $f && chmod +x $f + if test -f $f + then + chmod +x $f + fi done -- 1.7.10.4