We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7216da commit 172a573Copy full SHA for 172a573
backport/backport.py
@@ -227,7 +227,9 @@ def main():
227
print("")
228
print("Done cherry-picking")
229
print("Backporting language changes")
230
- res = do_command(["python3", os.path.dirname(os.path.realpath(__file__)) + "/backport-languages.py"])
+ res = do_command(
231
+ [sys.executable or "python3", os.path.dirname(os.path.realpath(__file__)) + "/backport-languages.py"]
232
+ )
233
if res.returncode != 0:
234
print("ERROR: backporting language changes failed")
235
return
0 commit comments