From 12f5f6a073f9c48fd8733f3102fe4162dcf1c514 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Thu, 4 Apr 2024 03:01:20 +0200 Subject: [PATCH] analyzer: fix build for paths with spaces (#83) --- build.vsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.vsh b/build.vsh index f6009b07..a1e57cb4 100644 --- a/build.vsh +++ b/build.vsh @@ -25,7 +25,7 @@ fn errorln(msg string) { } fn (m ReleaseMode) compile_cmd() string { - base_build_cmd := '${@VEXE} ${@VMODROOT} -o ${bin_path} -no-parallel' + base_build_cmd := '"${@VEXE}" "${@VMODROOT}" -o "${bin_path}" -no-parallel' cc := if v := os.getenv_opt('CC') { '-cc ${v}' } else {