From 02375f764a0646be9b10b9da556301b81f55155e Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Wed, 14 Jun 2023 15:48:21 +0100 Subject: [PATCH] [5.8] 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. Unblocks macOS CI for https://github.com/apple/swift-corelibs-foundation/pull/4761. --- 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