Skip to content

Commit 61e78ca

Browse files
committed
Build fix for NetBSD and other systems where /bin/sh isn't bash
Fixed by explicitly using /bin/bash. Removing bash-isms would also work. But /bin/sh is bash on most developers' systems, so using that shell explicitly seems like it's less likely to break in the future.
1 parent 8b48967 commit 61e78ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/run_tests.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

33
ECHO=`which echo`
44

0 commit comments

Comments
 (0)