From 166c4089eff5b76f9cf3fd45e83436b0abf425b7 Mon Sep 17 00:00:00 2001 From: Felipe M Date: Sat, 13 Aug 2022 11:05:16 +0200 Subject: [PATCH] fix: ignore error on dockerx build rm --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2b4181d..58fc55d 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ clean: ### clean test cache, build files $(info: Make: Clean) @rm -rf ${BUILDS_PATH} @go clean ${CLEAN_OPTIONS} - @docker buildx rm ${PROJECT_NAME}_builder + @-docker buildx rm ${PROJECT_NAME}_builder .PHONY: build build: clean ### builds the project for the setup os/arch combinations