From 3c8d39a1e4dba318ae6ff4894094207af6812bc0 Mon Sep 17 00:00:00 2001 From: gOOvER <116325+gOOvER@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:05:21 +0200 Subject: [PATCH] fixed wine image --- wine/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wine/entrypoint.sh b/wine/entrypoint.sh index db1eda0..4711873 100644 --- a/wine/entrypoint.sh +++ b/wine/entrypoint.sh @@ -123,9 +123,9 @@ for trick in $WINETRICKS_RUN; do done # Replace variables in the startup command -PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat -)") +PARSED=$(echo -e "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat -)") printf "%s%s\n" "$IMAGE_PROMPT" "$PARSED" # Run the startup command # shellcheck disable=SC2086 -exec env ${PARSED} \ No newline at end of file +eval env ${PARSED} \ No newline at end of file