el-get/test/test-recipe-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
188 B
Bash
Executable File

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