Skip to content

Commit 2b7c8fc

Browse files
committed
fix space in path issue for dump freeze
1 parent 00c491c commit 2b7c8fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/dump-pip-freeze/run.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
if not "%MLC_FAKE_RUN%" == "yes" (
2-
%MLC_PYTHON_BIN_WITH_PATH% %MLC_TMP_CURRENT_SCRIPT_PATH%\dump.py
2+
"%MLC_PYTHON_BIN_WITH_PATH%" "%MLC_TMP_CURRENT_SCRIPT_PATH%\dump.py"
33
IF %ERRORLEVEL% NEQ 0 EXIT %ERRORLEVEL%
44
)

script/dump-pip-freeze/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ function run() {
2525

2626
#Add your run commands here...
2727
# run "$MLC_RUN_CMD"
28-
run "${MLC_PYTHON_BIN_WITH_PATH} ${MLC_TMP_CURRENT_SCRIPT_PATH}/dump.py"
28+
run "\"${MLC_PYTHON_BIN_WITH_PATH}\" \"${MLC_TMP_CURRENT_SCRIPT_PATH}/dump.py\""

0 commit comments

Comments
 (0)