Skip to content

Commit bf26b9f

Browse files
author
Nick Galbreath
committed
Switch from /bin/bash to /bin/sh
1 parent f00245f commit bf26b9f

5 files changed

+6
-6
lines changed

run-clang-static-analyzer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
clang --version
33
cd src
44
scan-build --status-bugs \

run-gcov-samples.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Code coverage from data only (not unit tests)
44
#

run-gcov-unittests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Code coverage for data only (not unit tests)
44
#

tags.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
git status | grep -v '#'
33

44
NUMBER=`grep LIBINJECTION_VERSION c/libinjection.h | head -1 | awk '{print $3}' | tr -d '"'`

test-gprof.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
./autogen.sh
33
export CFLAGS="-O2 -pg -ansi"
44
./configure --enable-static --disable-shared
55
make clean
66
make
7-
cd src
7+
cd src
88
make reader
99
libtool --mode=execute ./reader -s -q ../data/sqli-*.txt ../data/false-*.txt
1010
libtool --mode=execute gprof ./reader gmon.out

0 commit comments

Comments
 (0)