This commit is contained in:
Povilas Balciunas 2025-03-20 17:37:33 +01:00 committed by GitHub
commit 836e27e34d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,8 @@ func getServiceExtraArgsFromCliArgs(c *cli.Context, log *zerolog.Logger) ([]stri
// currently, we only support extra args for token
return buildArgsForToken(c, log)
} else {
// empty extra args
return make([]string, 0), nil
return []string{
"tunnel", "run",
}, nil
}
}