diff options
author | 2008-07-09 01:17:08 -0400 | |
---|---|---|
committer | 2008-07-09 01:17:08 -0400 | |
commit | 8f0a81f559104cc2fb5019174a94ee876e5eec03 (patch) | |
tree | d1e775a19fe7551b79e88c5cfaa8935826bb92fe /python/package_id_TEST_setup.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 'python/package_id_TEST_setup.sh')
-rwxr-xr-x | python/package_id_TEST_setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/package_id_TEST_setup.sh b/python/package_id_TEST_setup.sh index a8286d515..be8462780 100755 --- a/python/package_id_TEST_setup.sh +++ b/python/package_id_TEST_setup.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # vim: set ft=sh sw=4 sts=4 et : mkdir package_id_TEST_dir || exit 1 |