This commit is contained in:
Earl Warren 2023-10-11 15:50:12 +02:00
parent 7d02d44019
commit ccf1ec2ffb
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
4 changed files with 20 additions and 74 deletions

View file

@ -73,6 +73,18 @@ function main() {
shift
debug
;;
--host_port)
shift
host_port=$1
;;
--url)
shift
url=$1
;;
--token)
shift
token=$1
;;
*)
"${1:-run}" "$host_port" "$url" "$token"
return 0