- fix vcvars command Signed-off-by: SSE4 <tomskside@gmail.com>
diff --git a/build.py b/build.py
index bad6fde..12a616c 100644
--- a/build.py
+++ b/build.py
@@ -15,7 +15,7 @@ def show_file(filename):
def run(command):
if "VCVARS" in os.environ:
- command = 'call "%s" amd64' % os.environ["VCVARS"] + command
+ command = 'call "%s" amd64 && ' % os.environ["VCVARS"] + command
status = os.system(command)
if 0 != status:
show_file(os.path.join("CMakeFiles", "CMakeOutput.log"))