Skip to content

Commit

Permalink
fix: NSIS Installer Not Working on Second Invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Sep 3, 2016
1 parent 138e8e2 commit 0f1869b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"bugs": "https://github.com/electron-userland/electron-builder/issues",
"homepage": "https://github.com/electron-userland/electron-builder",
"dependencies": {
"7zip-bin": "^1.0.6",
"7zip-bin": "^2.0.1",
"ansi-escapes": "^1.4.0",
"archiver": "^1.1.0",
"archiver-utils": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/app-executable-deps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"build": {
"electronVersion": "1.3.2",
"electronVersion": "1.3.5",
"category": "public.app-category.business"
}
}
2 changes: 1 addition & 1 deletion test/fixtures/test-app-one/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"author": "Foo Bar <[email protected]>",
"license": "MIT",
"build": {
"electronVersion": "1.3.2",
"electronVersion": "1.3.5",
"appId": "org.electron-builder.testApp",
"category": "your.app.category.type",
"iconUrl": "https://raw.githubusercontent.com/szwacz/electron-boilerplate/master/resources/windows/icon.ico",
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"build": {
"electronVersion": "1.3.2",
"electronVersion": "1.3.5",
"appId": "org.electron-builder.testApp",
"category": "your.app.category.type",
"iconUrl": "https://raw.githubusercontent.com/szwacz/electron-boilerplate/master/resources/windows/icon.ico",
Expand Down
2 changes: 1 addition & 1 deletion test/src/helpers/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import * as path from "path"
import { tmpdir } from "os"

export const TEST_DIR = path.join(tmpdir(), `electron-builder-test-${process.pid.toString(16)}`)
export const ELECTRON_VERSION = "1.3.2"
export const ELECTRON_VERSION = "1.3.5"

0 comments on commit 0f1869b

Please sign in to comment.