You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cli): allow credential name before or after flags
Go's flag package stops parsing at the first non-flag argument, so
'sluice cred add myname --type oauth' silently ignored --type.
Reorder args to move the positional name to the end before parsing.
Both 'cred add name --flags' and 'cred add --flags name' now work.
0 commit comments