Skip to content

Commit

Permalink
fix: pass keysize on command line
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider authored and daviddias committed Mar 15, 2018
1 parent e227a48 commit e2a6697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ipfsd-daemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ class Daemon {
// in case we decide to change it at
// the daemon level in the future
if (bits) {
args.concat(['-b', bits])
log(`initializing with keysize: ${bits}`)
args.push('-b')
args.push(bits)
}
if (initOptions.pass) {
args.push('--pass')
Expand Down

0 comments on commit e2a6697

Please sign in to comment.