From 8893e690e71f22628088e942a799d76ba12f3d21 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Sun, 11 Mar 2018 06:29:50 -0700 Subject: [PATCH] Fix typo with GIT_BRANCH in Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1