From 9c4a18c58444f4713fbb6ebaf71096cd02a9ce46 Mon Sep 17 00:00:00 2001 From: shim_ Date: Wed, 22 Jun 2016 19:43:43 +0200 Subject: [PATCH] correct escaping for bash --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index 140543f..a6792bd 100755 --- a/init.sh +++ b/init.sh @@ -39,7 +39,7 @@ fi function disable_command { rm -f $1 - echo -e "#!/bin/sh\n\n/bin/true" > $1 + echo -e '#!/bin/sh\n\n/bin/true' > $1 chmod +x $1 }