rm testdir

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2020-08-05 07:41:49 +02:00
parent 6011444a3c
commit 4ab8ebd298

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# this has to run once atfer git clone # this has to run once atfer git clone
# and every time we create new hooks # and every time we create new hooks
#### $$VERSION$$ 0.99-0-g2775000 #### $$VERSION$$ 0.99-8-g6011444
# magic to ensure that we're always inside the root of our application, # magic to ensure that we're always inside the root of our application,
# no matter from which directory we'll run script # no matter from which directory we'll run script
@ -45,12 +45,12 @@ done
if [ "$fail" -eq 0 ]; then if [ "$fail" -eq 0 ]; then
/bin/echo -n 'SUCCESS ' /bin/echo -n 'SUCCESS '
exitcode=0 exitcode=0
#rm -rf "${TESTENV}" rm -rf "${TESTENV}"
else else
/bin/echo -n 'FAILURE ' /bin/echo -n 'FAILURE '
exitcode=1 exitcode=1
#rm -rf "${TESTENV}/test" rm -rf "${TESTENV}/test"
#find "${TESTENV}/"* ! -name '[a-z]-*' -delete find "${TESTENV}/"* ! -name '[a-z]-*' -delete
fi fi
echo -e "${passed} / ${tests}\\n" echo -e "${passed} / ${tests}\\n"