From 273437d0345d9c016fb99727c726a910db46be73 Mon Sep 17 00:00:00 2001 From: Martin Treide-Heuser Date: Mon, 18 Jun 2018 10:38:24 +0200 Subject: [PATCH] forgot to escape slashes --- rootfs/usr/local/bin/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/usr/local/bin/run.sh b/rootfs/usr/local/bin/run.sh index 978a204..f3308a4 100644 --- a/rootfs/usr/local/bin/run.sh +++ b/rootfs/usr/local/bin/run.sh @@ -11,7 +11,7 @@ fi # Set log output to STDOUT if wanted (LOG_TO_STDOUT=true) if [ "$LOG_TO_STDOUT" == "true" ]; then chmod o+w /dev/stdout - sed -i "s/.*error_log.*$/error_log /dev/stdout warn;/" + sed -i "s/.*error_log.*$/error_log \/dev\/stdout warn;/" echo "Logging to STDOUT activated" > /dev/stdout fi