diff options
| -rwxr-xr-x | tool/aio.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/aio.py b/tool/aio.py index 5e09b7f..467b7ca 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -281,13 +281,14 @@ def run():          case "up":              git_update() +            template_generate(console)              docker_compose_up()          case "down":              docker_compose_down()          case "clear": -            clear() +            clear(console, args.include_data_dir)          case _:              template_generate(console)  | 
