From cd009b392c710756b4d154d16435931e2d97b8af Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Mon, 4 Jun 2012 23:22:39 -0700 Subject: [PATCH] update version check for jsstyling (using single-quotes for stirngs now) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b474205..d9455ea 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ all: .PHONY: versioncheck versioncheck: [[ `cat package.json | json version` == `grep '^var VERSION' bin/bunyan | awk -F'"' '{print $$2}'` ]] - [[ `cat package.json | json version` == `grep '^var VERSION' lib/bunyan.js | awk -F'"' '{print $$2}'` ]] + [[ `cat package.json | json version` == `grep '^var VERSION' lib/bunyan.js | awk -F"'" '{print $$2}'` ]] @echo Version check ok. .PHONY: cutarelease