Skip to content

Commit

Permalink
Merge pull request #7 from cunneen/patch-1
Browse files Browse the repository at this point in the history
Modify "missing .env.keys" error message
  • Loading branch information
motdotla authored Nov 13, 2024
2 parents b5c8288 + ad01839 commit 07e95ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/services/decrypt.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Decrypt {
if (!fs.existsSync(this.envKeysFilepath)) {
const code = 'MISSING_ENV_KEYS_FILE'
const message = `missing .env.keys (${this.envKeysFilepath})`
const help = '? a .env.keys file must be present in order to decrypt your .env.vault contents to .env file(s)'
const help = '? You can copy the .env.keys file from the "Deploy" page, after running [npx dotenv-vault@latest open].'

const error = new Error(message)
error.code = code
Expand Down

0 comments on commit 07e95ad

Please sign in to comment.