Skip to content

Commit 0f1869b

Browse files
committed
fix: NSIS Installer Not Working on Second Invocation
1 parent 138e8e2 commit 0f1869b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"bugs": "https://github.com/electron-userland/electron-builder/issues",
6060
"homepage": "https://github.com/electron-userland/electron-builder",
6161
"dependencies": {
62-
"7zip-bin": "^1.0.6",
62+
"7zip-bin": "^2.0.1",
6363
"ansi-escapes": "^1.4.0",
6464
"archiver": "^1.1.0",
6565
"archiver-utils": "^1.3.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"build": {
3-
"electronVersion": "1.3.2",
3+
"electronVersion": "1.3.5",
44
"category": "public.app-category.business"
55
}
66
}

test/fixtures/test-app-one/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author": "Foo Bar <foo@example.com>",
99
"license": "MIT",
1010
"build": {
11-
"electronVersion": "1.3.2",
11+
"electronVersion": "1.3.5",
1212
"appId": "org.electron-builder.testApp",
1313
"category": "your.app.category.type",
1414
"iconUrl": "https://raw.githubusercontent.com/szwacz/electron-boilerplate/master/resources/windows/icon.ico",

test/fixtures/test-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"build": {
4-
"electronVersion": "1.3.2",
4+
"electronVersion": "1.3.5",
55
"appId": "org.electron-builder.testApp",
66
"category": "your.app.category.type",
77
"iconUrl": "https://raw.githubusercontent.com/szwacz/electron-boilerplate/master/resources/windows/icon.ico",

test/src/helpers/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import * as path from "path"
22
import { tmpdir } from "os"
33

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

0 commit comments

Comments
 (0)