diff options
| author | Mikael Urankar <mikael@FreeBSD.org> | 2022-04-15 09:58:09 +0200 |
|---|---|---|
| committer | Mikael Urankar <mikael@FreeBSD.org> | 2022-04-15 09:58:25 +0200 |
| commit | f92779512dd3c4613a7e6d0c9eb578ba5a0ec91c (patch) | |
| tree | 52b7fcb628719d331e7ec3d7d62b85f9d14c6f4a | |
| parent | 330127599aae8e75c233bd360b472487ce127bac (diff) | |
| download | rust-f92779512dd3c4613a7e6d0c9eb578ba5a0ec91c.tar.gz rust-f92779512dd3c4613a7e6d0c9eb578ba5a0ec91c.zip | |
Add set -v as we can't pass command line argument with /usr/bin/env
| -rwxr-xr-x | clean_all.sh | 3 | ||||
| -rwxr-xr-x | prepare.sh | 3 | ||||
| -rwxr-xr-x | prepare_build.sh | 3 |
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 |
