diff --git a/appveyor.yml b/appveyor.yml index e41c017bec..c570af85a7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ branches: only: - master - - develop + - fix-win-install-message - /win*/ # https://www.appveyor.com/docs/lang/nodejs-iojs/ diff --git a/scripts/win-appveyor-build.js b/scripts/win-appveyor-build.js index 52f1969c85..25aedb2ce8 100755 --- a/scripts/win-appveyor-build.js +++ b/scripts/win-appveyor-build.js @@ -26,7 +26,7 @@ const isRightBranch = () => { process.env.APPVEYOR_REPO_COMMIT_MESSAGE || '' ).includes('[build binary]') - return branch === 'develop' || shouldForceBinaryBuild + return branch === 'fix-win-install-message' || shouldForceBinaryBuild } const isForkedPullRequest = () => {