mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-12-14 16:18:54 -05:00
tool: Print b2s errors to stderr
Useful since b2s often is used like this: `b2s -c -m app.bin > mgmt_app_digest.h`
This commit is contained in:
parent
6ad502c280
commit
33fc1bb4ba
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ func main() {
|
|||
|
||||
message, err := os.ReadFile(messageFile)
|
||||
if err != nil {
|
||||
fmt.Printf("%v\n", err)
|
||||
fmt.Fprintf(os.Stderr, "%v\n", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue