diff --git a/lib/config.js b/lib/config.js index a6ecf322..6703ec87 100644 --- a/lib/config.js +++ b/lib/config.js @@ -29,6 +29,7 @@ export function getConfig(configType, dir) { const configPath = getConfigPath(configType, dir); const encryptedConfigPath = configPath + '.gpg'; if (existsSync(encryptedConfigPath)) { + console.warn('Encrypted config detected, spawning gpg to decrypt it...'); const { status, stdout } = spawnSync('gpg', ['--decrypt', encryptedConfigPath]); if (status === 0) {