Skip to content

Commit 7c1d6c3

Browse files
authored
Fix windows test build in run.py (#416)
Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
1 parent 2d1ad60 commit 7c1d6c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def update_spec(target):
4949
"""
5050
def build():
5151
if "Windows" == platform.system():
52-
result = os.system('cmake -B ../build/ -S .. -G "Visual Studio 17 2022" -A x64"')
52+
result = os.system('cmake -B ../build/ -S .. -G "Visual Studio 17 2022" -A x64')
5353
else:
5454
result = os.system('cmake -B ../build/ -S ..')
5555
if result == 0:

0 commit comments

Comments
 (0)