From b428c7ff336da3265bf723709776c828c03b008a Mon Sep 17 00:00:00 2001 From: Claudiu Belu <1552519+claudiubelu@users.noreply.github.com> Date: Fri, 8 Jan 2021 18:31:04 +0200 Subject: [PATCH] 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. --- build/pause/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pause/Makefile b/build/pause/Makefile index a0a6ce42268..ca32df3319f 100644 --- a/build/pause/Makefile +++ b/build/pause/Makefile @@ -150,4 +150,4 @@ bin/orphan-linux-$(ARCH): linux/orphan.c $(TRIPLE)-strip $@" clean: - rm -rf .*-container-* .push-* bin/ + rm -rf .*container-* .push-* bin/