From bebf6fa55edb47a2111b1e31a33592012981fff5 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 1 Apr 2023 15:11:44 +0200 Subject: [PATCH] Remove unnecessary debug output --- compile.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/compile.sh b/compile.sh index fc4d802..38aea3a 100755 --- a/compile.sh +++ b/compile.sh @@ -217,11 +217,9 @@ then done; logFile="$(mktemp)"; - echo "NATIVE_WINDOWS: ${NATIVE_WINDOWS}"; if is_truthy "${NATIVE_WINDOWS}" then - echo "Running on windows natively!"; PROJECT_FILE="$projectFile" LOG_FILE="$logFile" WSLENV="PROJECT_FILE/p:LOG_FILE/p" cmd.exe /c "C:\Keil_v5\UV4\UV4.exe" -j0 -b "%PROJECT_FILE%" -t "$targetName" -l "%LOG_FILE%"; else WINEDEBUG=-all,fixme+event xvfb-run bash -c "dwm & wine \"C:\Keil_v5\UV4\UV4.exe\" -j0 -b \"$projectFile\" -t \"$targetName\" -l \"$logFile\""; @@ -235,7 +233,6 @@ then if is_truthy "${USE_WINDOWS_PATHS}" then - echo "Help me! I am forced to use windows paths, omgg!"; fixCommand="wslpath -m"; else fixCommand="realpath";