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 2091b23 commit 77ee945Copy full SHA for 77ee945
scripts/build.sh
@@ -255,6 +255,13 @@ xcb_flags+=(
255
COMPILER_INDEX_STORE_ENABLE=NO
256
)
257
258
+# If running in Gemini CLI, pass -quiet to xcodebuild.
259
+# This reduces chance of exceeding the request token count.
260
+if [[ -n "${GEMINI_CLI:-}" ]]; then
261
+ echo "Running in Gemini CLI, adding -quiet to xcodebuild invocation."
262
+ xcb_flags+=(-quiet)
263
+fi
264
+
265
source scripts/buildcache.sh
266
xcb_flags=("${xcb_flags[@]}" "${buildcache_xcb_flags[@]}")
267
0 commit comments