Skip to content

Commit

Permalink
fix(win): SignTool Error
Browse files Browse the repository at this point in the history
Close #3112, Close #3228
  • Loading branch information
develar committed Aug 14, 2018
1 parent efb40da commit bd06054
Show file tree
Hide file tree
Showing 7 changed files with 138 additions and 250 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:
TEST_FILES: ExtraBuildTest,BuildTest,extraMetadataTest,filesTest,globTest,nsisUpdaterTest,oneClickInstallerTest,installerTest,appxTest,msiTest

install:
- ps: Install-Product node 9 x64
- ps: Install-Product node 10 x64
- yarn

build: off
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"7zip-bin": "~4.0.2",
"@types/is-ci": "^1.1.0",
"app-builder-bin": "2.1.1",
"app-builder-bin": "2.1.2",
"archiver": "^2.1.1",
"async-exit-hook": "^2.0.1",
"bluebird-lst": "^1.0.5",
Expand All @@ -56,7 +56,7 @@
"normalize-package-data": "^2.4.0",
"parse-color": "^1.0.0",
"plist": "^3.0.1",
"read-config-file": "3.1.0",
"read-config-file": "3.1.2",
"sanitize-filename": "^1.6.1",
"sax": "^1.2.4",
"semver": "^5.5.0",
Expand Down Expand Up @@ -86,7 +86,7 @@
"@types/semver": "^5.5.0",
"@types/source-map-support": "^0.4.1",
"@types/stat-mode": "^0.2.0",
"babel-preset-ts-node6-bluebird": "^2.0.9",
"babel-preset-ts-node6-bluebird": "^2.0.10",
"convert-source-map": "^1.5.1",
"cross-env": "^5.2.0",
"decompress-zip": "^0.3.1",
Expand All @@ -95,12 +95,12 @@
"electron-builder-tslint-config": "^1.1.0",
"env-paths": "^1.0.0",
"globby": "^8.0.1",
"jest-cli": "^23.4.2",
"jest-cli": "^23.5.0",
"jest-junit": "^5.1.0",
"jsdoc-to-markdown": "^4.0.1",
"path-sort": "^0.1.0",
"sumchecker": "^2.0.2",
"ts-babel": "6.0.0",
"ts-babel": "6.0.1",
"ts-jsdoc": "^3.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/app-builder-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"homepage": "https://github.com/electron-userland/electron-builder",
"dependencies": {
"7zip-bin": "~4.0.2",
"app-builder-bin": "2.1.1",
"app-builder-bin": "2.1.2",
"async-exit-hook": "^2.0.1",
"bluebird-lst": "^1.0.5",
"chromium-pickle-js": "^0.2.0",
Expand All @@ -55,7 +55,7 @@
"is-ci": "^1.1.0",
"isbinaryfile": "^3.0.3",
"js-yaml": "^3.12.0",
"read-config-file": "3.1.0",
"read-config-file": "3.1.2",
"minimatch": "^3.0.4",
"normalize-package-data": "^2.4.0",
"plist": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/windowsCodeSign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { WinPackager } from "./winPackager"

export function getSignVendorPath() {
//noinspection SpellCheckingInspection
return getBinFromGithub("winCodeSign", "2.2.0", "qgm7bMtb/F9et2vxbb3XP4P4qnMcK7vmesx0A7djQUOvHkpIf5HlXcMz3VLGhXHqvBrqA9PKL8lcc7oEy0noaw==")
return getBinFromGithub("winCodeSign", "2.3.1", "J64zdgTQNW9D7gMLXHFiOB7haTmJNKqMj9+rR9wSRo83wKrOypO49dRpmjENp7sm7uo6Cdx7FK3lhVod0gfvJw==")
}

export type CustomWindowsSign = (configuration: CustomWindowsSignTaskConfiguration) => Promise<any>
Expand Down
2 changes: 1 addition & 1 deletion packages/builder-util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"out"
],
"dependencies": {
"app-builder-bin": "2.1.1",
"app-builder-bin": "2.1.2",
"temp-file": "^3.1.3",
"fs-extra-p": "^4.6.1",
"is-ci": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"builder-util": "0.0.0-semantic-release",
"fs-extra-p": "^4.6.1",
"is-ci": "^1.1.0",
"read-config-file": "3.1.0",
"read-config-file": "3.1.2",
"sanitize-filename": "^1.6.1",
"update-notifier": "^2.5.0",
"yargs": "^12.0.1",
Expand Down
Loading

0 comments on commit bd06054

Please sign in to comment.