Skip to content

Commit

Permalink
Build fix for NetBSD and other systems where /bin/sh isn't bash
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sgravrock committed Dec 15, 2012
1 parent 8b48967 commit 61e78ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

ECHO=`which echo`

Expand Down

0 comments on commit 61e78ca

Please sign in to comment.