Skip to content

Commit ee01ce1

Browse files
committed
Escape special characters.
1 parent 80b0cbe commit ee01ce1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deps/build.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ if is_windows()
2525

2626
# Run nmake -f Windows.mk under visual studio command prompt
2727
cd(@__DIR__) do
28-
run(`cmd /C "$vs_cmd_prompt" $arch & nmake -f Windows.mk clean`)
29-
run(`cmd /C "$vs_cmd_prompt" $arch & nmake -f Windows.mk`)
28+
run(`cmd /C "$vs_cmd_prompt" $arch \& nmake -f Windows.mk clean`)
29+
run(`cmd /C "$vs_cmd_prompt" $arch \& nmake -f Windows.mk`)
3030
end
3131

3232
cd(joinpath(@__DIR__, "..", "test")) do
33-
run(`cmd /C "$vs_cmd_prompt" $arch & nmake -f Windows.mk clean`)
34-
run(`cmd /C "$vs_cmd_prompt" $arch & nmake -f Windows.mk`)
33+
run(`cmd /C "$vs_cmd_prompt" $arch \& nmake -f Windows.mk clean`)
34+
run(`cmd /C "$vs_cmd_prompt" $arch \& nmake -f Windows.mk`)
3535
end
3636
else # for linux or mac
3737
cd(@__DIR__) do

0 commit comments

Comments
 (0)