Skip to content

Commit

Permalink
lint: fixed spacing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
casi committed Oct 26, 2019
1 parent 9feb1c1 commit 927256e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ function signApplicationAsync (opts) {
args.push('--timestamp')
}
if (opts['signature-size']) {
if(Number.isInteger(opts['signature-size']) && opts['signature-size'] > 0) {
if (Number.isInteger(opts['signature-size']) && opts['signature-size'] > 0) {
args.push('--signature-size', opts['signature-size'])
} else {
debugwarn(`Invalid value provided for --signature-size (${opts['signature-size']}). Must be a positive integer.`)
Expand Down

0 comments on commit 927256e

Please sign in to comment.