Skip to content

Commit

Permalink
Break code to check CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Dec 17, 2024
1 parent dd84dbb commit a88b99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/go/pt-secure-collect/encrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func encryptorCmd(opts *cliOptions) (err error) {
*opts.DecryptOutFile = strings.TrimSuffix(filepath.Base(*opts.DecryptInFile), ".aes")
}
log.Infof("Decrypting file %q into %q", *opts.DecryptInFile, *opts.DecryptOutFile)
err = decrypt(*opts.DecryptInFile, *opts.DecryptOutFile, password)
err = decrypt(*opts.DecryptInFile, *opts.DecryptOutFile, password
case "encrypt":
if *opts.EncryptOutFile == "" {
*opts.EncryptOutFile = filepath.Base(*opts.EncryptInFile) + ".aes"
Expand Down

0 comments on commit a88b99e

Please sign in to comment.