Skip to content

Commit f927795

Browse files
committed
Add set -v as we can't pass command line argument with /usr/bin/env
1 parent 3301275 commit f927795

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

clean_all.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/env bash --verbose
1+
#!/usr/bin/env bash
22
set -e
3+
set -v
34

45
rm -rf target/ build_sysroot/{sysroot/,sysroot_src/,target/,Cargo.lock} perf.data{,.old}
56
rm -rf regex/ simple-raytracer/

prepare.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/env bash --verbose
1+
#!/usr/bin/env bash
22
set -e
3+
set -v
34

45
source prepare_build.sh
56

prepare_build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env bash --verbose
1+
#!/usr/bin/env bash
22
set -e
3+
set -v
34

45
./build_sysroot/prepare_sysroot_src.sh

0 commit comments

Comments
 (0)