Skip to content

Commit

Permalink
use whisper.json as default batch file path
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Nov 1, 2024
1 parent 30225e1 commit 9ddadea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ func main() { //nolint: funlen,gocyclo,cyclop

genKeyFile := flags.String("gen-key", "", "Generate a key pair and save to the specified path.")

batchEncrypt := flags.String("be", "", "Encrypt all files in the batch config file.")
batchDecrypt := flags.String("bd", "", "Decrypt all files in the batch config file.")
batchEncrypt := flags.String("be", "whisper.json", "Encrypt all files in the batch config file.")
batchDecrypt := flags.String("bd", "whisper.json", "Decrypt all files in the batch config file.")

err := flags.Parse(os.Args[1:])
if err != nil {
Expand Down

0 comments on commit 9ddadea

Please sign in to comment.