diff --git a/cmd/duffle/bundle_remove.go b/cmd/duffle/bundle_remove.go index a107b005..16611633 100644 --- a/cmd/duffle/bundle_remove.go +++ b/cmd/duffle/bundle_remove.go @@ -16,7 +16,7 @@ import ( const bundleRemoveDesc = `Remove a bundle from the local storage. This removes a bundle from the local storage so that it will no longer be locally -available. Bundles can be rebuilt with 'duffle build'. +available. Bundles can be rebuilt and store in local storage with 'duffle build'. Ex. $ duffle bundle remove foo # removes all versions of foo from local store @@ -46,7 +46,7 @@ func newBundleRemoveCmd(w io.Writer) *cobra.Command { return remove.run() }, } - cmd.Flags().StringVar(&remove.versions, "version", "", "A version or SemVer2 version range") + cmd.Flags().StringVarP(&remove.versions, "version", "r", "", "A version or SemVer2 version range") return cmd }