diff options
author | 2008-07-09 01:17:08 -0400 | |
---|---|---|
committer | 2008-07-09 01:17:08 -0400 | |
commit | 8f0a81f559104cc2fb5019174a94ee876e5eec03 (patch) | |
tree | d1e775a19fe7551b79e88c5cfaa8935826bb92fe /test/run_test.sh | |
parent | df236f53f37b51d462b428ce1ff84943366c4acc (diff) | |
download | paludis-8f0a81f559104cc2fb5019174a94ee876e5eec03.tar.gz paludis-8f0a81f559104cc2fb5019174a94ee876e5eec03.tar.xz |
Use /usr/bin/env bash instead of /bin/bash for the shebang of shell scripts.
This should make things run more nicely on systems like FreeBSD, where
bash isn't installed in /bin.
Diffstat (limited to 'test/run_test.sh')
-rwxr-xr-x | test/run_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index e65c05fc6..5bffa4d06 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # vim: set ft=sh sw=4 sts=4 et : testname=${2:-${1}} |