From 1b07bbceaa234a37d0418d8e61f2d52dbd80af37 Mon Sep 17 00:00:00 2001 From: Tommy Au <75346987+smarttommyau@users.noreply.github.com> Date: Tue, 11 Jul 2023 22:07:08 +0800 Subject: [PATCH] Update build.bat Prevent spaces in path (#16635) ### Description Simply add double quotes to prevent there is spaces in the path ### Motivation and Context --------- Co-authored-by: Edward Chen <18449977+edgchen1@users.noreply.github.com> --- build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bat b/build.bat index d7f6a8513e..48d17befb8 100644 --- a/build.bat +++ b/build.bat @@ -3,4 +3,4 @@ @echo off rem Requires a python 3.6 or higher install to be available in your PATH -python %~dp0\tools\ci_build\build.py --build_dir %~dp0\build\Windows %* \ No newline at end of file +python "%~dp0\tools\ci_build\build.py" --build_dir "%~dp0\build\Windows" %*