Skip to content

Commit

Permalink
fix(appx): Command to create self signed certificate has changed
Browse files Browse the repository at this point in the history
Fix #1980
  • Loading branch information
develar committed Aug 23, 2017
1 parent 8a6039a commit 184781f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/electron-builder/src/targets/appx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default class AppXTarget extends Target {

const cscInfo = await this.packager.cscInfo.value
if (cscInfo == null) {
throw new Error("AppX package must be signed, but certificate is not set, please see https://github.com/electron-userland/electron-builder/wiki/Code-Signing\n\nYou can use `./node_modules/.bin/create-self-signed-cert -p YourName` to create self-signed certificate")
throw new Error("AppX package must be signed, but certificate is not set, please see https://github.com/electron-userland/electron-builder/wiki/Code-Signing\n\nYou can use `electron-builder create-self-signed-cert -p YourName` to create self-signed certificate")
}

let publisher = this.options.publisher
Expand Down

0 comments on commit 184781f

Please sign in to comment.