From 20be76c336510bc71af194853ef5ff12ff94fcee Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Mon, 23 Sep 2024 03:40:06 -0700 Subject: [PATCH] fix: use -m for tar to avoid make cache invalidation --- src/macros.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.mk b/src/macros.mk index c229f6a..1a01498 100644 --- a/src/macros.mk +++ b/src/macros.mk @@ -123,7 +123,7 @@ define build $(CHECK_FLAG) \ -f packages/$(NAME)/Containerfile \ packages/$(NAME) \ - | tar -C out/$(NAME) -x \ + | tar -C out/$(NAME) -mx \ ) \ ) $(eval TIMESTAMP := $(shell TZ=GMT date +"%Y-%m-%dT%H:%M:%SZ"))