aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoramine <hilalyamine@gmail.com>2019-11-05 21:29:15 +0100
committeramine <hilalyamine@gmail.com>2019-11-05 21:29:15 +0100
commit565ee4e43a4917a2b1006bf386affc54c9520ab3 (patch)
tree423fe3fa36fc1d3e69ff887c60fd91adf9ed0cf0 /Makefile
parent163ea9c93306c387f84ff0b85c2d8fca4c01e449 (diff)
downloadgit-bug-565ee4e43a4917a2b1006bf386affc54c9520ab3.tar.gz
makefile: support darwin operating systems
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 11 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f4e76f4c..9d0e24ec 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,12 @@ all: build
GIT_COMMIT:=$(shell git rev-list -1 HEAD)
GIT_LAST_TAG:=$(shell git describe --abbrev=0 --tags)
GIT_EXACT_TAG:=$(shell git name-rev --name-only --tags HEAD)
+UNAME_S := $(shell uname -s)
+XARGS:=xargs -r
+ifeq ($(UNAME_S),Darwin)
+ XARGS:=xargs
+endif
+
COMMANDS_PATH:=github.com/MichaelMure/git-bug/commands
LDFLAGS:=-X ${COMMANDS_PATH}.GitCommit=${GIT_COMMIT} \
-X ${COMMANDS_PATH}.GitLastTag=${GIT_LAST_TAG} \
@@ -33,16 +39,16 @@ debug-webui:
go build -ldflags "$(LDFLAGS)" -tags=debugwebui
clean-local-bugs:
- git for-each-ref refs/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
- git for-each-ref refs/remotes/origin/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
+ git for-each-ref refs/bugs/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
+ git for-each-ref refs/remotes/origin/bugs/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
rm -f .git/git-bug/bug-cache
clean-remote-bugs:
- git ls-remote origin "refs/bugs/*" | cut -f 2 | xargs -r git push origin -d
+ git ls-remote origin "refs/bugs/*" | cut -f 2 | $(XARGS) git push origin -d
clean-local-identities:
- git for-each-ref refs/identities/ | cut -f 2 | xargs -r -n 1 git update-ref -d
- git for-each-ref refs/remotes/origin/identities/ | cut -f 2 | xargs -r -n 1 git update-ref -d
+ git for-each-ref refs/identities/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
+ git for-each-ref refs/remotes/origin/identities/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
rm -f .git/git-bug/identity-cache
.PHONY: build install test pack-webui debug-webui clean-local-bugs clean-remote-bugs