From bc23aea5d281875c3365af8883e71628f187137c Mon Sep 17 00:00:00 2001 From: Zhihui Xia Date: Mon, 26 Feb 2024 16:45:58 -0800 Subject: [PATCH] why env could not recog? --- .builder/actions/xcode-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.builder/actions/xcode-tests.py b/.builder/actions/xcode-tests.py index 0bc9a30b6..f9fcf5dfa 100644 --- a/.builder/actions/xcode-tests.py +++ b/.builder/actions/xcode-tests.py @@ -5,5 +5,5 @@ class XCodeTests(Builder.Action): def run(self, env): destination = env.shell.getenv("XCODE_DESTINATION") - env.shell.exec("/usr/bin/xcodebuild", "-scheme aws-crt-swift-Package test -destination \'{}\'".format(destination), + env.shell.exec("xcodebuild", "-scheme aws-crt-swift-Package test -destination \'{}\'".format(destination), check=True)