From 195a65f8e9f999f677d8b38fb0934cd040bfb951 Mon Sep 17 00:00:00 2001 From: David Caro Date: Thu, 7 Mar 2024 18:19:26 +0100 Subject: [PATCH] start.sh: fix exec statement It should not have a space. Signed-off-by: David Caro --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index 92bce04..f70b9d1 100755 --- a/start.sh +++ b/start.sh @@ -11,8 +11,8 @@ DEST_DIR="/layers/heroku_php/wikibots/public_html" ## Otherwise they will be sent to stdout/stderr [[ "$TOOL_DATA_DIR" != "" ]] && { # shellcheck disable=SC2093 - exec 1 >> "$TOOL_DATA_DIR/access.log" - exec 2 >> "$TOOL_DATA_DIR/error.log" + exec 1>> "$TOOL_DATA_DIR/access.log" + exec 2>> "$TOOL_DATA_DIR/error.log" } python \