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
UPDATE: This appears to be a quirk of the commander package we're using for the CLI. All arguments that are set using a single dash and require CLI input cannot handle = symbols. E.G
code-server -P abcdefg (This works)
code-server -P=abcdefg (This throws errors)
Which is a bit odd because
code-server --password abcdegf (works)
code-server --password=abcdegf (also works)
This quirk is consistent and repeatable with the -h (for host) and -p (for port) flags as well.
code-server
version: DevelopmentDescription
According to code-server --help, this is the expected format for passing a password argument to the CLI:
-P, --password <value> Specify a password for authentication.
Currently, the
--password
argument works. But-P
does not.Steps to Reproduce
-P
CLI argumentThe text was updated successfully, but these errors were encountered: