Skip to content

Commit cea5c71

Browse files
committed
ci: change shebangs to bash instead of sh
1 parent 3e9a869 commit cea5c71

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ci/address-sanitizer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
[ ! -e address-sanitizer ] && mkdir address-sanitizer
33
cd address-sanitizer
44
#check if address sanitizer is available

ci/clang-static-analysis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
if ! hash scan-build; then
33
echo Clang static analyzer not installed. Skipping ...
44
exit 0

ci/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
[ ! -e build ] && mkdir build
33
RETURN_VALUE=0
44
cd build

ci/undefined-behavior-sanitizer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
[ ! -e undefined-behavior-sanitizer ] && mkdir undefined-behavior-sanitizer
33
cd undefined-behavior-sanitizer
44
#check if undefined-behavior sanitizer is available

run-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
TESTS=("ci/test.sh" "ci/clang-static-analysis.sh" "ci/address-sanitizer.sh" "ci/undefined-behavior-sanitizer.sh")
33
STATUS="OK"
44

0 commit comments

Comments
 (0)