Skip to content

Commit d101e75

Browse files
committed
test fixtures: use /bin/sh, fix case on system without bash where tests would fail because interpretter not found
1 parent ca3aa8f commit d101e75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
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
echo hello
44
echo $? # Exit status 0 returned because command executed successfully.

tmuxp/testsuite/fixtures/script_failed.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

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

0 commit comments

Comments
 (0)