1
0
mirror of https://bitbucket.org/shim_/docker-rtm.git synced 2018-10-04 01:52:08 +02:00

correct escaping for bash

This commit is contained in:
shim_ 2016-06-22 19:43:43 +02:00
parent 61181e9b98
commit 9c4a18c584

View File

@ -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
}