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:
|
||||
subprocess.check_call(
|
||||
[
|
||||
"python",
|
||||
sys.executable,
|
||||
SCRIPT_PATH,
|
||||
"--no-missing",
|
||||
"-s",
|
||||
|
|
|
|||
Loading…
Reference in New Issue