9
9
10
10
11
11
@ rem ################################
12
- @ rem # A configuration script to set things up:
12
+ @ rem # A configuration script to set things up:
13
13
@ rem # create a virtualenv and install or update thirdparty packages.
14
14
@ rem # Source this script for initial configuration
15
15
@ rem # Use configure --help for details
@@ -48,7 +48,7 @@ set "CFG_BIN_DIR=%CFG_ROOT_DIR%\%VIRTUALENV_DIR%\Scripts"
48
48
49
49
50
50
@ rem ################################
51
- @ rem # Set the quiet flag to empty if not defined
51
+ @ rem # Set the quiet flag to empty if not defined
52
52
if not defined CFG_QUIET (
53
53
set " CFG_QUIET = "
54
54
)
@@ -65,8 +65,8 @@ if "%1" EQU "--dev" (
65
65
set " CFG_REQUIREMENTS = %DEV_REQUIREMENTS% "
66
66
set CFG_DEV_MODE = 1
67
67
)
68
- if " %1 " EQU " --python" (
69
- echo " The --python is now DEPRECATED. Use the PYTHON_EXECUTABLE environment
68
+ if " %1 " EQU " --python" (
69
+ echo " The --python option is now DEPRECATED. Use the PYTHON_EXECUTABLE environment"
70
70
echo " variable instead. Run configure --help for details."
71
71
exit /b 0
72
72
)
@@ -76,7 +76,7 @@ if "%1" EQU "--python" (
76
76
@ rem # Use environment variables or a file if available.
77
77
@ rem # Otherwise the latest Python by default.
78
78
if not defined PYTHON_EXECUTABLE (
79
- @ rem # check for a file named PYTHON_EXECUTABLE
79
+ @ rem # check for a file named PYTHON_EXECUTABLE
80
80
if exist " " %CFG_ROOT_DIR% \PYTHON_EXECUTABLE" " (
81
81
set /p PYTHON_EXECUTABLE = < " " %CFG_ROOT_DIR% \PYTHON_EXECUTABLE" "
82
82
) else (
0 commit comments