Commit c6ce6d3b authored by Kevin Atkinson's avatar Kevin Atkinson

"ipfs key gen": include newline when printing generated key

License: MIT
Signed-off-by: default avatarKevin Atkinson <k@kevina.org>
parent 4cb236ca
......@@ -125,7 +125,7 @@ var KeyGenCmd = &cmds.Command{
return nil, fmt.Errorf("expected a KeyOutput as command result")
}
return strings.NewReader(k.Id), nil
return strings.NewReader(k.Id + "\n"), nil
},
},
Type: KeyOutput{},
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment