From c225f81a51a70b0b8a3159b2ba71a185d0e8620c Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 13 Jan 2018 13:34:36 -0500 Subject: [PATCH] hush --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d58a4e216..d7d96c3ec 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ EXTENSIONS:=embroider embroider_params embroider_simulate embroider_update # This gets the branch name or the name of the tag -VERSION:=$(git describe --tags --exact-match 2>&1 || git symbolic-ref -q --short HEAD) +VERSION:=$(shell git describe --tags --exact-match > /dev/null 2>&1 || git symbolic-ref -q --short HEAD) TARBALL:=inkstitch-$(VERSION)-$(shell uname)-$(shell uname -m).tar.gz SITE_PACKAGES:=$(shell python -c "import os; print(os.path.dirname(os.__file__) + '/site-packages')")