Skip to content

Commit

Permalink
Allow whitespace in a path to the Python interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
corporateshark committed Apr 12, 2023
1 parent e2707e0 commit b0af7d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
USE_TAR = False
USE_UNZIP = False

TOOL_COMMAND_PYTHON = sys.executable
TOOL_COMMAND_PYTHON = sys.executable if not " " in sys.executable else '"{}"'.format(sys.executable)
TOOL_COMMAND_GIT = "git"
TOOL_COMMAND_HG = "hg"
TOOL_COMMAND_SVN = "svn"
Expand Down

0 comments on commit b0af7d4

Please sign in to comment.