Skip to content

Commit

Permalink
chore: update storage commands help text
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge committed Jan 17, 2024
1 parent 1a8d4c7 commit 4dfd94a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

2 comments on commit 4dfd94a

@mamun-techmahindra
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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)
}

@mamun-techmahindra
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

div data-view-component =" true " class =... by MAMUN HOSSAIN.
div data-view-component="true" class="Overlay-body">

;
3:08 PM
name = "openssl" ; version = "0.10.42" ... by MAMUN HOSSAIN.
name = "openssl";
version = "0.10.42";
version = "0.10.48";
source = "registry+https://github.com/rust-lang/crates.io-index";
checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13";
checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2";
dependencies = 518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2;

Please sign in to comment.