Add set -v as we can't pass command line argument with /usr/bin/env
This commit is contained in:
parent
330127599a
commit
f92779512d
3 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash --verbose
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
set -v
|
||||||
|
|
||||||
rm -rf target/ build_sysroot/{sysroot/,sysroot_src/,target/,Cargo.lock} perf.data{,.old}
|
rm -rf target/ build_sysroot/{sysroot/,sysroot_src/,target/,Cargo.lock} perf.data{,.old}
|
||||||
rm -rf regex/ simple-raytracer/
|
rm -rf regex/ simple-raytracer/
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash --verbose
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
set -v
|
||||||
|
|
||||||
source prepare_build.sh
|
source prepare_build.sh
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash --verbose
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
set -v
|
||||||
|
|
||||||
./build_sysroot/prepare_sysroot_src.sh
|
./build_sysroot/prepare_sysroot_src.sh
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue