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"
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