lang: Do not hardcode python executable name
Use sys.executable instead to ensure the executable used by "env" is kept.
This commit is contained in:
parent
9e09e5014c
commit
105a6b9438
|
|
@ -67,7 +67,7 @@ def main():
|
||||||
try:
|
try:
|
||||||
subprocess.check_call(
|
subprocess.check_call(
|
||||||
[
|
[
|
||||||
"python",
|
sys.executable,
|
||||||
SCRIPT_PATH,
|
SCRIPT_PATH,
|
||||||
"--no-missing",
|
"--no-missing",
|
||||||
"-s",
|
"-s",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue