From 84651d5b073d1cbcdcb1753558b3f1bcd6ad66fa Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Mon, 4 Apr 2022 09:52:41 +0200 Subject: [PATCH] chore: no error when delete rebar.lock using make clean-all command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5499d6dbe..0fb5c63e5 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ $(PROFILES:%=clean-%): .PHONY: clean-all clean-all: @rm -rf _build - @rm rebar.lock + @rm -f rebar.lock .PHONY: deps-all deps-all: $(REBAR) $(PROFILES:%=deps-%)