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 8492c89 commit 355cf89Copy full SHA for 355cf89
xcodeproj/internal/templates/runner.sh
@@ -170,7 +170,7 @@ common:rules_xcodeproj --repo_env=XCODE_VERSION=%xcode_version%
170
EOF
171
172
if command -v /usr/bin/xcode-select >/dev/null 2>&1; then
173
- developer_dir=$(/usr/bin/xcode-select -p)
+ developer_dir="$(/usr/bin/xcode-select -p)"
174
else
175
developer_dir="${DEVELOPER_DIR:-}"
176
fi
@@ -179,7 +179,7 @@ if [[ -n "$developer_dir" ]]; then
179
cat >> "$pre_xcodeproj_bazelrc_dir/pre_xcodeproj.bazelrc" <<EOF
180
181
# Set \`DEVELOPER_DIR\` in case a bazel wrapper filters it
182
-common:rules_xcodeproj --repo_env=DEVELOPER_DIR=$developer_dir
+common:rules_xcodeproj --repo_env="DEVELOPER_DIR=$developer_dir"
183
184
185
0 commit comments