Skip to content

Commit 5717ca3

Browse files
committed
Merge pull request #87 from mikemcquaid/bashisms-tests
Add test to check for bashisms.
2 parents 9d3895c + 101cfb5 commit 5717ca3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

test/test-bashisms.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
# bashisms tests
3+
4+
# Bring in testlib
5+
. $(dirname "$0")/testlib.sh
6+
7+
begin_test "ghe-* bashisms"
8+
(
9+
set -e
10+
checkbashisms -f "$ROOTDIR/bin/ghe-"*
11+
)
12+
end_test

0 commit comments

Comments
 (0)