From 66826ebfdd50b2aada38053a950c169b1816c4b7 Mon Sep 17 00:00:00 2001 From: Felipe M Date: Sat, 13 Aug 2022 11:06:37 +0200 Subject: [PATCH] fix: ignore error on docker buildx rm --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3b7c5a5..0310b7b 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 -f ${PROJECT_NAME}_builder + @-docker buildx rm -f ${PROJECT_NAME}_builder .PHONY: build build: clean ### builds the project for the setup os/arch combinations