Commit 5561c6a3 by Mithgol the Webmaster

explicitly pass `%PLATFORM%` to `scripts/build_for_node_webkit.cmd`

parent 96e5709e
...@@ -30,7 +30,7 @@ install: ...@@ -30,7 +30,7 @@ install:
# make commit message env var shorter # make commit message env var shorter
- SET CM=%APPVEYOR_REPO_COMMIT_MESSAGE% - SET CM=%APPVEYOR_REPO_COMMIT_MESSAGE%
- if not "%CM%" == "%CM:[publish binary]=%" node-pre-gyp --msvs_version=2013 publish - if not "%CM%" == "%CM:[publish binary]=%" node-pre-gyp --msvs_version=2013 publish
- call scripts\build_for_node_webkit.cmd - call scripts\build_for_node_webkit.cmd %PLATFORM%
build: OFF build: OFF
test: OFF test: OFF
......
set set
if not "%PLATFORM%" == "x86" goto end if not "%1" == "x86" goto end
if "%nw_version%" == "" goto end if "%nw_version%" == "" goto end
node-pre-gyp clean node-pre-gyp clean
npm install nw-gyp npm install nw-gyp
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment