-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Closed
Labels
cliIssues and PRs related to the Node.js command line interface.Issues and PRs related to the Node.js command line interface.opensslIssues and PRs related to the OpenSSL dependency.Issues and PRs related to the OpenSSL dependency.
Description
The --use-bundled-ca
and --use-openssl-ca
command line arguments are mutually exclusive but can both be used on the same command line. The behavior depends on the order in which they are used.
// Uses openssl-ca
$ node --use-bundled-ca --use-openssl-ca
// Uses bundled-ca
$ node --use-openssl-ca --use-bundled-ca
Since the options are mutually exclusive, it would likely be better to abort if both are used.
- Version:
- Platform:
- Subsystem:
Metadata
Metadata
Assignees
Labels
cliIssues and PRs related to the Node.js command line interface.Issues and PRs related to the Node.js command line interface.opensslIssues and PRs related to the OpenSSL dependency.Issues and PRs related to the OpenSSL dependency.