Skip to content

Commit

Permalink
fix reading of gpgRecipientsFile
Browse files Browse the repository at this point in the history
  • Loading branch information
cheekyhalf committed Nov 9, 2015
1 parent c902cca commit 0427a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gpg.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ gpgEncrypt = (text, index, callback, stderr_cb, exit_cb) ->

# try to read recipients file and ignore errors
fileRecipients = ''
try fileRecipients = fs.readFileSync recipientsFile, 'utf8'
try fileRecipients = fs.readFileSync gpgRecipientsFile, 'utf8'
catch ENOENT
() ->

Expand Down

0 comments on commit 0427a8c

Please sign in to comment.