You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.go
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -229,12 +229,13 @@ var (
229
229
// -- List
230
230
namespaceListCmd=namespaceCmd.Command("list", "List your namespaces").Alias("ls")
231
231
// -- Download
232
-
namespaceDownloadCmd=namespaceCmd.Command("download", "Download all files in a namespace")
232
+
namespaceDownloadCmd=namespaceCmd.Command("download", "Download all files in a namespace").Alias("dl")
233
233
namespaceDownloadNs=namespaceDownloadCmd.Arg("namespace", "The namespace to download the files from").HintAction(hintListNamespaces).Required().String()
234
234
namespaceDownloadExcludeGroups=namespaceDownloadCmd.Flag("exclude-groups", "Exclude files in specified group(s) from getting downloaded").Strings()
235
235
namespaceDownloadExcludeTags=namespaceDownloadCmd.Flag("exclude-tags", "Exclude files having specified tags(s) from getting downloaded").Strings()
236
+
namespaceDownloadExcludeFiles=namespaceDownloadCmd.Flag("exclude-files", "Exclude files by ID").Strings()
236
237
namespaceDownloadParallelism=namespaceDownloadCmd.Flag("parallelism", "Download multiple files at the same time").Default("1").Uint()
237
-
namespaceDownloadOutputDir=namespaceDownloadCmd.Flag("output", "Save namespace in a custom directory than the namespacename").Default("./").String()
238
+
namespaceDownloadOutputDir=namespaceDownloadCmd.Flag("output", "Save namespace in a custom directory than the namespacename").Short('o').Default("./").String()
0 commit comments