From 7863ab3b0391e6f87b6b6408d14f858dd22c3597 Mon Sep 17 00:00:00 2001 From: Ingo Ratsdorf Date: Wed, 10 Sep 2025 08:52:14 +1200 Subject: [PATCH] Update install/ubuntu/start.ubuntu.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- install/ubuntu/start.ubuntu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/ubuntu/start.ubuntu.sh b/install/ubuntu/start.ubuntu.sh index 627a5dff..1a245ea2 100644 --- a/install/ubuntu/start.ubuntu.sh +++ b/install/ubuntu/start.ubuntu.sh @@ -25,9 +25,9 @@ PHPVERSION="8.3" if [ -n "${TZ}" ]; then FILECONF=$INSTALL_PATH/config/$CONF_FILE if [ -f "$FILECONF" ]; then - sed -ie "s|Europe/Berlin|${TZ}|g" $INSTALL_PATH/config/$CONF_FILE + sed -i -e "s|Europe/Berlin|${TZ}|g" "$INSTALL_PATH/config/$CONF_FILE" else - sed -ie "s|Europe/Berlin|${TZ}|g" $INSTALL_PATH/back/$CONF_FILE.bak + sed -i -e "s|Europe/Berlin|${TZ}|g" "$INSTALL_PATH/back/$CONF_FILE.bak" fi fi