Skip to content
Snippets Groups Projects
Commit 1134dced authored by Niels Möller's avatar Niels Möller
Browse files

* testsuite/teardown-env: Use -exec argument to find.

* examples/teardown-env: Likewise.

Rev: nettle/examples/teardown-env:1.4
Rev: nettle/testsuite/teardown-env:1.4
parent 50005965
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,6 @@ rm -rf testkey testkey.pub testsignature testsignature2 \ ...@@ -6,6 +6,6 @@ rm -rf testkey testkey.pub testsignature testsignature2 \
case "$EMULATOR" in case "$EMULATOR" in
wine*) wine*)
rm `find . -type l -name '*.dll'` find . -type l -name '*.dll' -exec rm -f '{}' ';'
;; ;;
esac esac
...@@ -4,6 +4,6 @@ rm -rf testkey.priv testkey.pub testtmp testsignature testsignature2 ...@@ -4,6 +4,6 @@ rm -rf testkey.priv testkey.pub testtmp testsignature testsignature2
case "$EMULATOR" in case "$EMULATOR" in
wine*) wine*)
rm `find . -type l -name '*.dll'` find . -type l -name '*.dll' -exec rm -f '{}' ';'
;; ;;
esac esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment