From 99c3d99cb43dc482af6ad8141dafec83e66522f6 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Wed, 14 Jun 2023 15:33:24 +0100 Subject: [PATCH] build_script.py: use `python3` by default We're seeing sporadic CI failures, since apparently some nodes don't have `python` symlinking to a correct Python version. Changing this to `python3` will also make it consistent with the rest of the Python scripts in the Swift project. --- build_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_script.py b/build_script.py index bd90ebf89..92bc9e0d7 100755 --- a/build_script.py +++ b/build_script.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # build_script.py - Build, install, and test XCTest -*- python -*- # # This source file is part of the Swift.org open source project