We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77d93fc commit 99c367aCopy full SHA for 99c367a
src/docker_publisher_osparc_services/cli.py
@@ -124,6 +124,12 @@ async def run_command(config: Path, legacy_escape: bool) -> None:
124
@click.command()
125
@click.version_option(version=__version__)
126
@click.argument("config", type=Path)
127
+@click.option(
128
+ "--legacy-escape",
129
+ is_flag=True,
130
+ default=False,
131
+ help="Enable legacy escape for ooil commands.",
132
+)
133
def main(config: Path, legacy_escape: bool = False) -> None:
134
"""Interface to be used in CI"""
135
asyncio.get_event_loop().run_until_complete(run_command(config, legacy_escape))
0 commit comments