diff options
| author | crupest <crupest@outlook.com> | 2022-11-29 12:11:13 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2022-11-29 12:11:13 +0800 | 
| commit | 4486ef93f49a55cb359bc9967b13cf1588633059 (patch) | |
| tree | 9b90ce519e90803e9226a6a45548ce0e45ca23f3 | |
| parent | 04b3004f954b2d7b201e39b18048073fe9962e8d (diff) | |
| download | crupest-4486ef93f49a55cb359bc9967b13cf1588633059.tar.gz crupest-4486ef93f49a55cb359bc9967b13cf1588633059.tar.bz2 crupest-4486ef93f49a55cb359bc9967b13cf1588633059.zip  | |
Aio improvement. v2.0
| -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)  | 
