diff options
author | Sam James <sam@gentoo.org> | 2022-11-22 01:29:40 +0000 |
---|---|---|
committer | Heiko Becker <mail@heiko-becker.de> | 2022-11-25 19:16:24 +0100 |
commit | 9a2a92417a598d39606948f4c357e899e25e9dd1 (patch) | |
tree | 25a1171467971a9a28e4a6bb3c0fd9abcd6b1aa9 | |
parent | 574ee6aa59157baa5a5da462415d7bd48c108554 (diff) | |
download | wgetpaste-9a2a92417a598d39606948f4c357e899e25e9dd1.tar.gz |
test: use portable bash shebang
Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-x | test/test.sh | 2 | ||||
-rwxr-xr-x | test/test_ansi.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/test.sh b/test/test.sh index 4f03070..787170d 100755 --- a/test/test.sh +++ b/test/test.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#!/usr/bin/env bash # wgetpaste test script # Exit code: number of mismatched downloads or 1 for general failure diff --git a/test/test_ansi.sh b/test/test_ansi.sh index 6b559f9..58b06b2 100755 --- a/test/test_ansi.sh +++ b/test/test_ansi.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#!/usr/bin/env bash # wgetpaste test script (stripping ANSI codes) # Based on test/test.sh |