Skip to content

Commit d27f5f6

Browse files
committed
feat: update command descriptions for seal-all and unseal-all
1 parent 0d900df commit d27f5f6

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

cmd/seal-all.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import (
88

99
var sealAllCmd = &cobra.Command{
1010
Use: "seal-all",
11-
Short: "Seal all secrets in the qsealrc.yaml file, you should not use this command and use sync",
12-
Long: `Seal all secrets in the qsealrc.yaml file`,
11+
Short: "Seal all secrets defined in the config file",
1312
Run: func(cmd *cobra.Command, args []string) {
1413
qsealRc, err := qsealrc.Load()
1514
if err != nil {

cmd/unseal-all.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import (
88

99
var unsealAllCmd = &cobra.Command{
1010
Use: "unseal-all",
11-
Short: "Unseal all secrets in the qsealrc.yaml file you should not use this command and use sync",
12-
Long: `Unseal all secrets in the qsealrc.yaml file`,
11+
Short: "Unseal all secrets defined in the config file",
1312
Run: func(cmd *cobra.Command, args []string) {
1413
qsealRc, err := qsealrc.Load()
1514
if err != nil {

0 commit comments

Comments
 (0)