Skip to content

Commit

Permalink
fix err message
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Jan 11, 2024
1 parent e23da27 commit ea72ed7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,14 @@ func (b *Batch) Encrypt() error {
return nil
}

err = run(conf, input, output)
if err != nil {
return err
}

fmt.Fprintf(os.Stdout, "[encrypted] %s -> %s\n", inPath, outPath)

return run(conf, input, output)
return nil
})
}

Expand Down
2 changes: 1 addition & 1 deletion lib/whisper.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

const (
APIVersion = "v0.8.7"
APIVersion = "v0.8.8"
WireFormatVersion = byte(8)
)

Expand Down

0 comments on commit ea72ed7

Please sign in to comment.