mirror of
https://github.com/FiloSottile/age.git
synced 2026-03-11 08:55:41 +00:00
cmd/age: fix autogenerated password log line
The newline was dropped in 0ab5c73.
This commit is contained in:
parent
f66877cfa5
commit
e41463e117
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ func withTerminal(f func(in, out *os.File) error) error {
|
|||
|
||||
func printfToTerminal(format string, v ...interface{}) error {
|
||||
return withTerminal(func(_, out *os.File) error {
|
||||
_, err := fmt.Fprintf(out, "age: "+format, v...)
|
||||
_, err := fmt.Fprintf(out, "age: "+format+"\n", v...)
|
||||
return err
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue