Compare commits

..

2 commits

Author SHA1 Message Date
e0c3580845 Merge remote-tracking branch 'origin/main'
# Conflicts:
#	main.py
2025-05-15 17:16:22 +02:00
5439bfee28 more description in command arg 2025-05-15 17:15:44 +02:00

View file

@ -22,7 +22,7 @@ def main():
services = read_config['services'] services = read_config['services']
parser.add_argument("command", help="command to run (create, start, stop, shell, karaf, down") 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("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") parser.add_argument("-y", action="store_true", help="automatically confirm any queries")
args = parser.parse_args() args = parser.parse_args()