pause image: Fixes clean make action

The ``.container-$OS-$ARCH`` make subaction is creating files with the same name, and ``clean`` is meant to delete them. However, the ``clean``'s rm regex is not quite correct.
This commit is contained in:
Claudiu Belu 2021-01-08 18:31:04 +02:00 committed by GitHub
parent b259c92dda
commit b428c7ff33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,4 +150,4 @@ bin/orphan-linux-$(ARCH): linux/orphan.c
$(TRIPLE)-strip $@"
clean:
rm -rf .*-container-* .push-* bin/
rm -rf .*container-* .push-* bin/