We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gpg
1 parent 24ecaa3 commit 00b57d3Copy full SHA for 00b57d3
lib/config.js
@@ -29,6 +29,7 @@ export function getConfig(configType, dir) {
29
const configPath = getConfigPath(configType, dir);
30
const encryptedConfigPath = configPath + '.gpg';
31
if (existsSync(encryptedConfigPath)) {
32
+ console.warn('Encrypted config detected, spawning gpg to decrypt it...');
33
const { status, stdout } =
34
spawnSync('gpg', ['--decrypt', encryptedConfigPath]);
35
if (status === 0) {
0 commit comments