From 69baba63a6730223dbe358ec14d27f4bd66e28e0 Mon Sep 17 00:00:00 2001 From: Patrik Olin Date: Fri, 1 Apr 2022 06:17:38 +0200 Subject: [PATCH] add update option to makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 2758a17..dfed4f8 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,11 @@ install: go install $(LDFLAGS) cp butler-burton.1.gz $(MANPATH)/man1 +## update: updates the installed app to a new version. Basically the same as install without downloading the cert-files +update: + go install $(LDFLAGS) + cp butler-burton.1.gz $(MANPATH)/man1 + ## build: build binary, runs 'go build' internally build: go build $(LDFLAGS) -o $(PROJECTNAME)