Skip to content

Commit 0b2867c

Browse files
committed
default to committing changes for start and stop
1 parent c93e97d commit 0b2867c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/edge_containers_cli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def start(
266266
autocompletion=all_svc,
267267
show_default=False,
268268
),
269-
commit: bool = typer.Option(False, help="Commits the values to the git repo"),
269+
commit: bool = typer.Option(True, help="Commits the values to the git repo"),
270270
):
271271
"""Start a service"""
272272
try:
@@ -284,7 +284,7 @@ def stop(
284284
autocompletion=running_svc,
285285
show_default=False,
286286
),
287-
commit: bool = typer.Option(False, help="Commits the values to the git repo"),
287+
commit: bool = typer.Option(True, help="Commits the values to the git repo"),
288288
):
289289
"""Stop a service"""
290290
try:

0 commit comments

Comments
 (0)