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 7457c73 commit 3261571Copy full SHA for 3261571
config.py
@@ -83,7 +83,7 @@ def get_workspace():
83
workspace = get_workspace()
84
85
# find and record build_root for workspace and scheme
86
- cmd = f"""xcodebuild -showBuildSettings -workspace '{workspace}' -scheme '{scheme}' | grep "\\bBUILD_DIR =" | head -1 | awk -F" = " '{{print $2}}' | tr -d '"' """
+ cmd = f"""xcodebuild -showBuildSettings -workspace '{workspace}' -scheme '{scheme}' 2>/dev/null | grep "\\bBUILD_DIR =" | head -1 | awk -F" = " '{{print $2}}' | tr -d '"' """
87
build_dir = subprocess.check_output(cmd, shell=True, universal_newlines=True)
88
build_root = os.path.join(build_dir, "../..")
89
build_root = os.path.abspath(build_root)
0 commit comments