From d32716877cd0d0f440a683d92a527b07c633acbb Mon Sep 17 00:00:00 2001 From: Oskar Sharipov Date: Sat, 22 Aug 2020 08:18:05 +0300 Subject: [PATCH] Fix Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 10f572e..b33c8c4 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ MESSAGE=message .PHONY: all all: signature git ipfs - @echo "Yay, we updated our new canary message!" + @echo "Message was updated." .PHONY: signature @@ -15,7 +15,7 @@ signature: $(MESSAGE) $(KEY) .PHONY: git git: @git add $(MESSAGE) $(MESSAGE).sig - @git commit -m "New update" -q || echo "No new files."; exit 1 + @git commit -m "New update" -q @git push -q .PHONY: ipfs -- 2.11.4.GIT