From: David Griffith Date: Sun, 11 Mar 2018 13:29:50 +0000 (-0700) Subject: Fix typo with GIT_BRANCH in Makefile. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=8893e690e71f22628088e942a799d76ba12f3d21;p=liskon_frotz.git Fix typo with GIT_BRANCH in Makefile. --- diff --git a/Makefile b/Makefile index 2fc4e1a..87ef44b 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ VERSION = $(MAJOR).$(MINOR) # not, make it clear that we're working from a release. GIT_DIR ?= .git ifneq ($(and $(wildcard $(GIT_DIR)),$(shell which git)),) - GIT_BRANCH = $(shell git rev-parse --abbref-ref HEAD) + GIT_BRANCH = $(shell git rev-parse --abbrev-ref HEAD) GIT_HASH = $(shell git rev-parse HEAD) GIT_HASH_SHORT = $(shell git rev-parse --short HEAD) GIT_TAG = $(shell git describe --abbrev=0 --tags)