We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fd27c5 commit 6c80805Copy full SHA for 6c80805
src/root-authority.ts
@@ -60,6 +60,10 @@ function generateOpenSSLConfFiles() {
60
writeFileSync(opensslConfPath, confTemplate);
61
writeFileSync(configPath('index.txt'), '');
62
writeFileSync(configPath('serial'), '01');
63
+ // This version number lets us write code in the future that intelligently upgrades an existing
64
+ // devcert installation. This "ca-version" is independent of the devcert package version, and
65
+ // tracks changes to the root certificate setup only.
66
+ writeFileSync(configPath('devcert-ca-version'), '1');
67
}
68
69
// macOS is pretty simple - just add the certificate to the system keychain, and most applications
0 commit comments