Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def create_python_batch(self, name, script_name,
if script_name:
script_name = ' ' + script_name
self.create_batch_script(name, r"""@echo off
call %~dp0env_for_icons.bat
call "%~dp0env_for_icons.bat"
""" + changedir + command + script_name + options + " %*")

def create_installer(self):
Expand Down Expand Up @@ -763,7 +763,7 @@ def _create_batch_scripts(self):
""")

self.create_batch_script('cmd.bat', r"""@echo off
call %~dp0env_for_icons.bat
call "%~dp0env_for_icons.bat"
cmd.exe /k""")
self.create_batch_script('python.bat',r"""@echo off
call "%~dp0env_for_icons.bat"
Expand Down