Skip to content

Commit e9ad231

Browse files
unhide remote storage commands
1 parent dd3fd09 commit e9ad231

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

renku/ui/cli/dataset.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ def get_dataset_files(records):
11551155
ctx.exit(1)
11561156

11571157

1158-
@dataset.command(hidden=True)
1158+
@dataset.command()
11591159
@click.argument("name", shell_complete=shell_complete_datasets)
11601160
@click.option(
11611161
"-l",
@@ -1173,7 +1173,7 @@ def pull(name, location):
11731173
pull_cloud_storage_command().with_communicator(communicator).build().execute(name=name, location=location)
11741174

11751175

1176-
@dataset.command(hidden=True)
1176+
@dataset.command()
11771177
@click.argument("name", shell_complete=shell_complete_datasets)
11781178
@click.option(
11791179
"-e",
@@ -1197,7 +1197,7 @@ def mount(name, existing, unmount, yes):
11971197
command.execute(name=name, existing=existing, yes=yes)
11981198

11991199

1200-
@dataset.command(hidden=True)
1200+
@dataset.command()
12011201
@click.argument("name", shell_complete=shell_complete_datasets)
12021202
def unmount(name):
12031203
"""Unmount a backend storage in the dataset's data directory."""

0 commit comments

Comments
 (0)