Merge "Clean doesn't prompt or automatically delete files."

This commit is contained in:
Zuul 2021-10-26 15:02:36 +00:00 committed by Gerrit Code Review
commit 4e05d913a6
1 changed files with 4 additions and 4 deletions

View File

@ -177,7 +177,7 @@ tests:
clean:
set -ex
sudo -E tools/multistrap.sh clean
find $(WORKDIR) -name "*.iso" -exec rm {} \; >& /dev/null
find $(WORKDIR) -name "*.qcow2" -exec rm {} \; >& /dev/null
find $(WORKDIR) -name "*.snapshot" -exec rm {} \; >& /dev/null
find $(WORKDIR) -name "*.md5sum" -exec rm {} \; >& /dev/null
find $(WORKDIR) -name "*.iso" -exec rm -f {} \; >& /dev/null
find $(WORKDIR) -name "*.qcow2" -exec rm -f {} \; >& /dev/null
find $(WORKDIR) -name "*.snapshot" -exec rm -f {} \; >& /dev/null
find $(WORKDIR) -name "*.md5sum" -exec rm -f {} \; >& /dev/null