el-get/test/run-test-interactive.sh
Rüdiger Sonderfeld 570555b72f Change bash shebang to use /usr/bin/env.
That makes those scripts usable on systems where GNU bash is not in
/bin/.  E.g., NixOS.
2014-08-18 01:09:16 +02:00

13 lines
189 B
Bash
Executable File

#!/usr/bin/env bash
if [ -z "$1" ]; then
echo "Usage: $0 testfile1 [testfile2 ...]"
exit 0
fi
source "$(dirname $0)"/test-utils.sh
for t in "$@"; do
run_test interactive "$t"
done