1
0

Move a single quote so it properly launches kfeditor on windows

This commit is contained in:
amione 2023-03-30 03:20:37 +02:00 committed by GitHub
parent d830a5ea16
commit ffdd6779bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -721,14 +721,14 @@ function compile ()
msg "compilation" msg "compilation"
if is_true "$ArgHoldEditor"; then 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)" parse_log "$(find_log)"
if ! compiled; then if ! compiled; then
die "compilation failed" die "compilation failed"
fi fi
msg "${GRN}successfully compiled${DEF}" msg "${GRN}successfully compiled${DEF}"
else else
CMD //C "$(cygpath -w "$KFEditor") make $StripSourceArg -useunpublished" & CMD //C "$(cygpath -w "$KFEditor")" make $StripSourceArg -useunpublished &
PID="$!" PID="$!"
while ps -p "$PID" &> /dev/null while ps -p "$PID" &> /dev/null
do do