8000 make WinPython launchers work on base directories like "x ()y · winpython/winpython@d5d7950 · GitHub
[go: up one dir, main page]

Skip to content

Commit d5d7950

Browse files
committed
make WinPython launchers work on base directories like "x ()y
solves #999
1 parent 1548b2e commit d5d7950

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ def _create_batch_scripts_initial(self):
13751375
)
13761376
) else (
13771377
rem if it it launched from another directory , we keep it that one echo %CD%
1378-
if not "%CD%\"=="%~dp0" set WINPYWORKDIR1=%CD%
1378+
if not "%CD%\"=="%~dp0" set WINPYWORKDIR1="%CD%"
13791379
)
13801380
13811381
rem remove some potential last \

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '4.3.20210717'
31+
__version__ = '4.4.20210807'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

0 commit comments

Comments
 (0)
0