Skip to content

Commit 88e41f0

Browse files
authored
Fix default argument for python path (#501)
1 parent 875c266 commit 88e41f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-restler.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ def publish_dotnet_apps(dirs, configuration, dotnet_package_source):
201201
help='The build configuration',
202202
type=str, default='release', required=False)
203203
parser.add_argument('--python_path',
204-
help='The path or python command to use for compilation. (Default: python)',
205-
type=str, default='python', required=False)
204+
help='The path or python command to use for compilation. (Default: python command that initiated this script)',
205+
type=str, default=sys.executable, required=False)
206206
parser.add_argument('--compile_type',
207207
help='all: driver/compiler & engine as python files\n'
208208
'engine: engine only, as python files\n'

0 commit comments

Comments
 (0)