From 611a02b34418a1f2920bb1c9933c35c2fa2d46ca Mon Sep 17 00:00:00 2001 From: SheetJS Date: Tue, 13 May 2014 18:13:07 -0700 Subject: [PATCH] Makefile use `cut -b` for OSX compatibility --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f8d2cb..43d8fe2 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ TMP_PATH := /tmp/${NPM_PACKAGE}-$(shell date +%s) REMOTE_NAME ?= origin REMOTE_REPO ?= $(shell git config --get remote.${REMOTE_NAME}.url) -CURR_HEAD := $(firstword $(shell git show-ref --hash HEAD | cut --bytes=-6) master) +CURR_HEAD := $(firstword $(shell git show-ref --hash HEAD | cut -b -6) master) GITHUB_PROJ := nodeca/${NPM_PACKAGE}