-
-
Notifications
You must be signed in to change notification settings - Fork 37.1k
--use-bundled-ca and --use-openssl-ca order #12083
Copy link
Copy link
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
Activity
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.
The
--use-bundled-caand--use-openssl-cacommand 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
// Uses bundled-ca
Since the options are mutually exclusive, it would likely be better to abort if both are used.