File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ if [[ -n "${PWD_OVERRIDE}" ]]; then
11
11
cd " ${PWD_OVERRIDE} " || exit
12
12
fi
13
13
14
- echo " Running bazelisk in $( pwd) ."
14
+ echo " Running bazelisk in $( pwd) ." >&2
15
15
16
16
# An additional bazelrc must be synthesized to specify precisely how to use the
17
17
# GCP bazel cache.
@@ -20,10 +20,10 @@ GCP_BAZELRC="$(mktemp /tmp/XXXXXX.bazelrc)"
20
20
trap ' rm ${GCP_BAZELRC}' EXIT
21
21
22
22
if [[ -n " $GCP_CREDS_FILE " && -f " $GCP_CREDS_FILE " ]]; then
23
- echo " Applying GCP cache key; will upload to the cache."
23
+ echo " Applying GCP cache key; will upload to the cache." >&2
24
24
echo " build --google_credentials=${GCP_CREDS_FILE} " >> " ${GCP_BAZELRC} "
25
25
else
26
- echo " No key/invalid path to key. Download from cache only."
26
+ echo " No key/invalid path to key. Download from cache only." >&2
27
27
echo " build --remote_upload_local_results=false" >> " ${GCP_BAZELRC} "
28
28
fi
29
29
You can’t perform that action at this time.
0 commit comments