From f699e76c56a8d90fbfcb6089503d7fe253d83f91 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 11 Jan 2025 21:41:14 +0100 Subject: [PATCH] build: Fix comment causing issues with docker --- dist/appimage/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dist/appimage/Dockerfile b/dist/appimage/Dockerfile index 25d18c5a73a0a..79a456a2ff5f3 100644 --- a/dist/appimage/Dockerfile +++ b/dist/appimage/Dockerfile @@ -31,7 +31,10 @@ ARG BUILD_TYPE=RelWithDebInfo ARG GIT_COMMIT_HASH ARG GIT_BRANCH WORKDIR /build -SHELL ["bash", "-c"] # Ubuntu sh doesnt support string substitution + +# Ubuntu sh doesnt support string substitution +SHELL ["bash", "-c"] + RUN <