Skip to content

Commit

Permalink
[#1355] fix python path for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
xael-fry committed Mar 30, 2022
1 parent 5bd109a commit a173577
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
<condition property="playExtension" value="">
<and><os family="unix"/></and>
</condition>
<condition property="pythonExecutable" value="${basedir}/../python/python.exe">
<condition property="pythonExecutable" value="python">
<and><os family="windows"/></and>
</condition>
<condition property="pythonExecutable" value="python">
Expand Down
2 changes: 1 addition & 1 deletion play.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
"%~dp0python\python.exe" "%~dp0play" %*
"python" "%~dp0play" %*

0 comments on commit a173577

Please sign in to comment.