fix: CLI_ARGS is a string and not an array (#2191)

This commit is contained in:
Valentin Maerten
2025-04-21 21:31:18 +02:00
committed by GitHub
parent bf4e7960cb
commit 39706105e1
2 changed files with 5 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ func run() error {
if err != nil {
return err
}
_, args, err := args.Get()
args, _, err := args.Get()
if err != nil {
return err
}