Set default galaxy-root option to CWD

This commit is contained in:
mvdbeek
2023-05-28 11:15:59 +02:00
parent cc7e90211b
commit ebf5b73594
+3 -1
View File
@@ -460,7 +460,9 @@ def group_options(*options):
galaxy_root_option = click.option(
"--galaxy-root", type=click.Path(exists=True, file_okay=False, resolve_path=True, path_type=pathlib.Path)
"--galaxy-root",
type=click.Path(exists=True, file_okay=False, resolve_path=True, path_type=pathlib.Path),
default=".",
)
package_repository_option = click.option(
"--package_repository",