Skip to content

Commit 76ac4ac

Browse files
committed
Merge pull request #339 from matthew-brett/bat-script-fix
MRG: fix bug for Windows bat-file install Bug fix for Windows paths with spaces.
2 parents f18487a + b38bae7 commit 76ac4ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nisext/sexts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def _package_status(pkg_name, version, version_getter, checker):
222222
exit /b 1
223223
:goodstart
224224
set py_exe=%line1:~2%
225-
call %py_exe% %pyscript% %*
225+
call "%py_exe%" %pyscript% %*
226226
"""
227227

228228
class install_scripts_bat(install_scripts):

0 commit comments

Comments
 (0)