Skip to content

Commit

Permalink
test fixtures: use /bin/sh, fix case on system without bash where tes…
Browse files Browse the repository at this point in the history
…ts would fail because interpretter not found
  • Loading branch information
tony committed Dec 26, 2014
1 parent ca3aa8f commit d101e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tmuxp/testsuite/fixtures/script_complete.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

echo hello
echo $? # Exit status 0 returned because command executed successfully.
2 changes: 1 addition & 1 deletion tmuxp/testsuite/fixtures/script_failed.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh


echoerr() { echo "$@" 1>&2; }
Expand Down

0 comments on commit d101e75

Please sign in to comment.