Skip to content

Commit

Permalink
Fix batch file misbehaving when path has spaces (#3023)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusGuy authored Jul 18, 2024
1 parent 1599e9f commit 3598a84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mk/msvc/run_supertux.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
start %~dp0\bin\supertux2.exe %*
start "" "%~dp0\bin\supertux2.exe" %*
4 changes: 2 additions & 2 deletions mk/msvc/run_supertux_portable.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
set SUPERTUX2_USER_DIR=%~dp0\user\
start %~dp0\bin\supertux2.exe %*
set "SUPERTUX2_USER_DIR=%~dp0\user\"
start "" "%~dp0\bin\supertux2.exe" %*

0 comments on commit 3598a84

Please sign in to comment.