mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
### Description <!-- Describe your changes. --> Simply add double quotes to prevent there is spaces in the path ### Motivation and Context <!-- - Why is this change required? What problem does it solve? As if there are spaces in path the bat cannot run, error would occurs. So with a simple double quotes can fix these problems - If it fixes an open issue, please link to the issue here. --> --------- Co-authored-by: Edward Chen <18449977+edgchen1@users.noreply.github.com>
6 lines
256 B
Batchfile
6 lines
256 B
Batchfile
:: Copyright (c) Microsoft Corporation. All rights reserved.
|
|
:: Licensed under the MIT License.
|
|
|
|
@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" %*
|