From 4dfd94a206d2c1040b248a22de058701c3c8ba2a Mon Sep 17 00:00:00 2001 From: Qiao Han Date: Wed, 17 Jan 2024 15:13:51 +0800 Subject: [PATCH] chore: update storage commands help text --- cmd/storage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/storage.go b/cmd/storage.go index c161c4845..eb7d90cb8 100644 --- a/cmd/storage.go +++ b/cmd/storage.go @@ -74,9 +74,9 @@ func init() { storageCmd.AddCommand(lsCmd) cpCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Recursively copy a directory.") storageCmd.AddCommand(cpCmd) - rmCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Recursively move a directory.") + rmCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Recursively remove a directory.") storageCmd.AddCommand(rmCmd) - mvCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Recursively remove a directory.") + mvCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "Recursively move a directory.") storageCmd.AddCommand(mvCmd) rootCmd.AddCommand(storageCmd) }