Skip to content

Commit

Permalink
fixed wine image
Browse files Browse the repository at this point in the history
  • Loading branch information
gOOvER committed Oct 26, 2023
1 parent 3e9eac9 commit 3c8d39a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wine/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
eval env ${PARSED}

0 comments on commit 3c8d39a

Please sign in to comment.