From 5439bfee288edc8e5a76a176f92a3472b7e4bd74 Mon Sep 17 00:00:00 2001 From: Raphael Dittberner Date: Thu, 15 May 2025 17:14:59 +0200 Subject: [PATCH] more description in command arg --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 639e065..0325eef 100755 --- a/main.py +++ b/main.py @@ -22,7 +22,7 @@ def main(): services = read_config['services'] - parser.add_argument("command", help="command to run") + parser.add_argument("command", help="command to run (create, start, stop, shell, karaf, down)") parser.add_argument("service", help="name of service if applicable, or leave empty for all services", nargs='?', default='') parser.add_argument("-y", action="store_true", help="automatically confirm any queries") args = parser.parse_args()