Skip to content

Commit 99c367a

Browse files
author
Andrei Neagu
committed
expose --legacy-escape
1 parent 77d93fc commit 99c367a

File tree

1 file changed

+6
-0
lines changed
  • src/docker_publisher_osparc_services

1 file changed

+6
-0
lines changed

src/docker_publisher_osparc_services/cli.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@ async def run_command(config: Path, legacy_escape: bool) -> None:
124124
@click.command()
125125
@click.version_option(version=__version__)
126126
@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+
)
127133
def main(config: Path, legacy_escape: bool = False) -> None:
128134
"""Interface to be used in CI"""
129135
asyncio.get_event_loop().run_until_complete(run_command(config, legacy_escape))

0 commit comments

Comments
 (0)