Skip to content

Commit

Permalink
fix: Backported longer sign command timeout from sign-addon 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl committed Nov 5, 2019
1 parent 20cc8c2 commit 7aa8660
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cmd/sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ export default function sign(
apiSecret,
apiUrlPrefix,
apiProxy,
timeout,
// Backport increased sign-addon timeout (fixed on master
// by updating sign-addon dependency to 1.0.0).
timeout: typeof timeout === 'number' ? timeout : 900000,
verbose,
id,
xpiPath: buildResult.extensionPath,
Expand Down

0 comments on commit 7aa8660

Please sign in to comment.