add missing bash.sh
1 files changed, 11 insertions(+), 0 deletions(-) A => tests/bash.sh
A => tests/bash.sh +11 -0
@@ 0,0 1,11 @@ +#!/usr/bin/env bash +# do not run on distcheck, because I did not get access to the +# templates working with distcheck: it would need to install before +# running the tests +if ! test -d templates; then + exit 0; +fi +./conf new -l bash testbashprojectcreation && (cd testbashprojectcreation && make distcheck) +TEST_RESULT=$? +rm -rf testbashprojectcreation +exit "$TEST_RESULT"