From 897f0354c7206ad147e3b0c8dcedb2cbdaf7d79d Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 25 Mar 2023 13:21:00 +0100 Subject: [PATCH] Fix malformed command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f94cd5d..b00d5fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -81,7 +81,7 @@ RUN \ try=$1; \ # Run installer asynchronously { \ - { WINEDEBUG=+all,trace-all,warn-all /usr/bin/entrypoint wine MDK537.exe --batch-install 2>&1 || echo "exit $?"; } \ + { 2>&1 WINEDEBUG=+all,trace-all,warn-all /usr/bin/entrypoint wine MDK537.exe --batch-install || echo "exit $?"; } \ # Write output to `log.txt` | { [ $DEBUG -eq 1 ] && tee log.txt || cat; } \ # Pipe stdout and stderr to `handle_output` function