fix: shadowing original error

This fixes shadowing the original error so that the original error is
propagated upwards
pull/872/head
ALX99 4 weeks ago
parent 9a0444db7e
commit 7cbd49375a

@ -56,7 +56,6 @@ func Init() (ret *Flags, err error) {
// takes input from stdin if it exists, otherwise takes input from args (the last argument) // takes input from stdin if it exists, otherwise takes input from args (the last argument)
if hasStdin { if hasStdin {
if message, err = readStdin(); err != nil { if message, err = readStdin(); err != nil {
err = errors.New("error: could not read from stdin")
return return
} }
} else if len(args) > 0 { } else if len(args) > 0 {

Loading…
Cancel
Save