aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/bootstrap
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2016-08-05 12:27:21 +0000
committerGravatar Yun Peng <pcloudy@google.com>2016-08-05 13:34:53 +0000
commit6992e68e1ebd93223131d5b99a1c9ff6842b2ab2 (patch)
treef8852155d7b9980c5c0d5e9a0f094c8ab4732b93 /scripts/bootstrap
parent1a29aad031311724516f9b51a93f109b9a4333c3 (diff)
*** Reason for rollback *** The underlying issue (wrong operator '==' instead of '=' for test (a.k.a '[')) was fixed by commit 31b059fc07831f86be951609128b7cd51613df98 which removed the offending code completely. *** Original change description *** Revert build-runfiles to use /bin/bash If /bin/sh is dash (default on Ubuntu), this output a lot of garbage error, which make thing that the dummy build-runfiles is incorrect. See http://ci.bazel.io/view/Bazel%20bootstrap%20and%20maintenance/job/Bazel/JAVA_VERSION=1.8,PLATFORM_NAME=ubuntu_15.10-x86_64/731/console -- MOS_MIGRATED_REVID=129432905
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 04e32e6c87..bf1da4dd81 100755
--- a/scripts/bootstrap/compile.sh
+++ b/scripts/bootstrap/compile.sh
@@ -209,7 +209,7 @@ mkdir -p ${ARCHIVE_DIR}/_embedded_binaries
# Dummy build-runfiles
cat <<'EOF' >${ARCHIVE_DIR}/_embedded_binaries/build-runfiles${EXE_EXT}
-#!/bin/bash
+#!/bin/sh
mkdir -p $2
cp $1 $2/MANIFEST
EOF