about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMikael Urankar <mikael@FreeBSD.org>2022-04-15 09:58:09 +0200
committerMikael Urankar <mikael@FreeBSD.org>2022-04-15 09:58:25 +0200
commitf92779512dd3c4613a7e6d0c9eb578ba5a0ec91c (patch)
tree52b7fcb628719d331e7ec3d7d62b85f9d14c6f4a
parent330127599aae8e75c233bd360b472487ce127bac (diff)
downloadrust-f92779512dd3c4613a7e6d0c9eb578ba5a0ec91c.tar.gz
rust-f92779512dd3c4613a7e6d0c9eb578ba5a0ec91c.zip
Add set -v as we can't pass command line argument with /usr/bin/env
-rwxr-xr-xclean_all.sh3
-rwxr-xr-xprepare.sh3
-rwxr-xr-xprepare_build.sh3
3 files changed, 6 insertions, 3 deletions
diff --git a/clean_all.sh b/clean_all.sh
index efa6454f26d..782bd3e5058 100755
--- a/clean_all.sh
+++ b/clean_all.sh
@@ -1,5 +1,6 @@
-#!/usr/bin/env bash --verbose
+#!/usr/bin/env bash
 set -e
+set -v
 
 rm -rf target/ build_sysroot/{sysroot/,sysroot_src/,target/,Cargo.lock} perf.data{,.old}
 rm -rf regex/ simple-raytracer/
diff --git a/prepare.sh b/prepare.sh
index 42bbc4f23b9..e98f24c6e12 100755
--- a/prepare.sh
+++ b/prepare.sh
@@ -1,5 +1,6 @@
-#!/usr/bin/env bash --verbose
+#!/usr/bin/env bash
 set -e
+set -v
 
 source prepare_build.sh
 
diff --git a/prepare_build.sh b/prepare_build.sh
index 7bd13ef0175..8194360da4b 100755
--- a/prepare_build.sh
+++ b/prepare_build.sh
@@ -1,4 +1,5 @@
-#!/usr/bin/env bash --verbose
+#!/usr/bin/env bash
 set -e
+set -v
 
 ./build_sysroot/prepare_sysroot_src.sh