From b1209c1e7a39453cf1b27a1b6c82011a53304ea5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Feb 2022 11:19:51 +0530 Subject: [PATCH] Be explicit about python3 --- update-on-ox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-on-ox b/update-on-ox index 8fc195fbe..69a5ccf94 100755 --- a/update-on-ox +++ b/update-on-ox @@ -57,4 +57,4 @@ with tempfile.NamedTemporaryFile(prefix='install-dmg-', suffix='.py') as f: f.write(script.encode('utf-8')) f.flush() run(f'scp bypy/b/macos/dist/{dmg} {f.name} {HOST}:/tmp') - run(f'ssh {HOST} python /tmp/{os.path.basename(f.name)} /tmp/{dmg}') + run(f'ssh {HOST} python3 /tmp/{os.path.basename(f.name)} /tmp/{dmg}')