Skip to content

Commit

Permalink
Docstring tweak for import arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
r-n-o committed May 14, 2024
1 parent c7ebbd6 commit 4ce4245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/turnkey/pkg/encrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ var (
)

func init() {
encryptCmd.Flags().StringVar(&importBundlePath, "import-bundle-input", "", "filepath to write the import bundle to.")
encryptCmd.Flags().StringVar(&encryptedBundlePath, "encrypted-bundle-output", "", "filepath to read the encrypted bundle from.")
encryptCmd.Flags().StringVar(&importBundlePath, "import-bundle-input", "", "filepath to read the import bundle from (result of init-import).")
encryptCmd.Flags().StringVar(&encryptedBundlePath, "encrypted-bundle-output", "", "filepath to write the encrypted bundle to (posted in the final import).")
encryptCmd.Flags().StringVar(&plaintextPath, "plaintext-input", "", "filepath to read the plaintext from that will be encrypted.")
encryptCmd.Flags().StringVar(&keyFormat, "key-format", "mnemonic", "optional formatting to apply to the plaintext before it is encrypted.")
encryptCmd.Flags().StringVar(&User, "user", "", "ID of user to encrypting the plaintext.")
Expand Down

0 comments on commit 4ce4245

Please sign in to comment.