Skip to content

Commit

Permalink
Update upload_dir parameters description
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed Oct 22, 2023
1 parent 747ab4a commit 1fa2859
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cloudinary_cli/modules/upload_dir.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,15 @@
help="Pass optional parameters as interpreted strings.")
@option("-t", "--transformation", help="The transformation to apply on all uploads.")
@option("-f", "--folder", default="",
help="The path where you want to upload the assets. "
"The path you specify will be pre-pended to the public IDs of the uploaded assets. "
help="The full path where you want to upload the assets. "
"You can specify a whole path, for example path1/path2/path3. "
"Any folders that do not exist are automatically created.")
@option("-fm", "--folder-mode", type=Choice(['fixed', 'dynamic'], case_sensitive=False),
help="Specify folder mode explicitly. By default uses cloud mode configured in your cloud.", hidden=True)
@option("-p", "--preset", help="The upload preset to use.")
@option("-e", "--exclude-dir-name", is_flag=True, default=False,
help="When this option is used, the contents of the parent directory are uploaded but not the parent "
"directory itself. Thus, the name of the specified parent directory is not included "
"in the pubic ID path of the uploaded assets.")
"directory itself.")
@option("-w", "--concurrent_workers", type=int, default=30, help="Specify the number of concurrent network threads.")
@option("-d", "--doc", is_flag=True, help="Open upload_dir command documentation page.")
def upload_dir(directory, glob_pattern, include_hidden, optional_parameter, optional_parameter_parsed, transformation,
Expand Down

0 comments on commit 1fa2859

Please sign in to comment.