Skip to content

Commit e4bc9e7

Browse files
committed
Update node-webkit to 0.11.0
Fixes #25 :D
1 parent cea8111 commit e4bc9e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ PATH := $(PWD)/node_modules/.bin:$(PATH)
22
APPNAME := WebGL\ Workshop
33
OSXDEST := build/osx/$(APPNAME).app
44
OSXFILE := $(OSXDEST)/Contents/Resources/app.nw
5+
NWVERSION := 0.11.0
56

67
.PHONY: build/osx clean pack publish
78

@@ -48,7 +49,7 @@ build/osx: $(OSXFILE)
4849
build/downloads/osx.zip:
4950
mkdir -p build/downloads
5051
test -f build/downloads/osx.zip || \
51-
(nw-download build/downloads/osx.zip -p osx -r 0.10.5); true
52+
(nw-download build/downloads/osx.zip -p osx -r $(NWVERSION)); true
5253

5354
$(OSXDEST): build/downloads/osx.zip
5455
mkdir -p build/osx

0 commit comments

Comments
 (0)