From ffdd6779bd15dca1f0d53a332047f4aa25ec7a65 Mon Sep 17 00:00:00 2001 From: amione <57235791+xamionex@users.noreply.github.com> Date: Thu, 30 Mar 2023 03:20:37 +0200 Subject: [PATCH] Move a single quote so it properly launches kfeditor on windows --- builder | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder b/builder index 97bd529..527860d 100644 --- a/builder +++ b/builder @@ -721,14 +721,14 @@ function compile () msg "compilation" if is_true "$ArgHoldEditor"; then - CMD //C "$(cygpath -w "$KFEditor") make $StripSourceArg -useunpublished" + CMD //C "$(cygpath -w "$KFEditor")" make $StripSourceArg -useunpublished parse_log "$(find_log)" if ! compiled; then die "compilation failed" fi msg "${GRN}successfully compiled${DEF}" else - CMD //C "$(cygpath -w "$KFEditor") make $StripSourceArg -useunpublished" & + CMD //C "$(cygpath -w "$KFEditor")" make $StripSourceArg -useunpublished & PID="$!" while ps -p "$PID" &> /dev/null do