From 4ab8ebd2982315b828d9f12069356ac17471ae63 Mon Sep 17 00:00:00 2001 From: "Kay Marquardt (Gnadelwartz)" Date: Wed, 5 Aug 2020 07:41:49 +0200 Subject: [PATCH] rm testdir --- dev/all-tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/all-tests.sh b/dev/all-tests.sh index 8dc104c..509b3b6 100755 --- a/dev/all-tests.sh +++ b/dev/all-tests.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # 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, # no matter from which directory we'll run script @@ -45,12 +45,12 @@ done if [ "$fail" -eq 0 ]; then /bin/echo -n 'SUCCESS ' exitcode=0 - #rm -rf "${TESTENV}" + rm -rf "${TESTENV}" else /bin/echo -n 'FAILURE ' exitcode=1 - #rm -rf "${TESTENV}/test" - #find "${TESTENV}/"* ! -name '[a-z]-*' -delete + rm -rf "${TESTENV}/test" + find "${TESTENV}/"* ! -name '[a-z]-*' -delete fi echo -e "${passed} / ${tests}\\n"