aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/bootstrap
diff options
context:
space:
mode:
authorGravatar hlopko <hlopko@google.com>2017-05-09 07:10:35 -0400
committerGravatar Kristina Chodorow <kchodorow@google.com>2017-05-09 10:54:38 -0400
commit200479a92d20cff54bffff24b1633288e38f3ca3 (patch)
tree3869f8b4ea86c7fc319dc187d46c3adacb7c74c9 /scripts/bootstrap
parent72a377b6684f98760d9333310610ee1360b1d58e (diff)
Fix link in bazel/bootstrap/compile.sh
RELNOTES: None PiperOrigin-RevId: 155489021
Diffstat (limited to 'scripts/bootstrap')
-rwxr-xr-xscripts/bootstrap/compile.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap/compile.sh b/scripts/bootstrap/compile.sh
index fa40f3af36..0fce0dc043 100755
--- a/scripts/bootstrap/compile.sh
+++ b/scripts/bootstrap/compile.sh
@@ -326,7 +326,7 @@ function run_bazel_jar() {
shift
local client_env=()
# Propagate all environment variables to bootstrapped Bazel.
- # See https://stackoverflow.com/41898503/loop-over-environment-variables-in-posix.sh
+ # See https://stackoverflow.com/questions/41898503/loop-over-environment-variables-in-posix-sh
local env_vars="$(awk 'END { for (name in ENVIRON) { if(name != "_") print name; } }' </dev/null)"
for varname in $env_vars; do
eval value=\$$varname