Skip to content

Commit

Permalink
analyzer: fix build for paths with spaces (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm authored Apr 4, 2024
1 parent 95869fa commit 12f5f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.vsh
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 12f5f6a

Please sign in to comment.