fix: don't destroy browserwindow on process.exit (#15751)

This commit is contained in:
Zach Bloomquist
2021-04-01 18:57:17 -04:00
committed by GitHub
parent 06fcc0b17a
commit 87530303e4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ branches:
only:
- master
- develop
- sem-next-ver
- 7.0-release
- /win*/
- feature/cross-platform-wizard
+1 -1
View File
@@ -25,7 +25,7 @@ const isRightBranch = () => {
process.env.APPVEYOR_REPO_COMMIT_MESSAGE || ''
).includes('[build binary]')
const branchesToBuildBinary = ['develop', 'sem-next-ver']
const branchesToBuildBinary = ['develop', '7.0-release']
return branchesToBuildBinary.includes(branch) || shouldForceBinaryBuild
}