From: Peje Nilsson Date: Wed, 14 Jun 2017 11:23:58 +0000 (+0000) Subject: Run the rm in the same subshell X-Git-Tag: 1.1~324 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=b6db1731ed66b8f37c24bd3017a67deaf7fe1a44 Run the rm in the same subshell --- diff --git a/tests/Makefile b/tests/Makefile index e4983ad..f1a3797 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -40,7 +40,7 @@ regress: if advent $$OPTS < $${file}.log >/tmp/regress$$$$ 2>&1; \ then diff --text -u $${file}.chk /tmp/regress$$$$ || exit 1; \ else echo "*** Nonzero return status on $${file}!"; exit 1; fi \ - done - @rm -f /tmp/regress$$$$ + done; \ + rm -f /tmp/regress$$$$ # end