do not pass outdir

This commit is contained in:
Girish Ramakrishnan
2015-12-14 09:34:28 -08:00
parent 0651bfc4b8
commit 14ab85dc4f
3 changed files with 17 additions and 13 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ function ensureCertificate(domain, callback) {
debug('Using %s to get certificate for %s', tlsConfig.provider, domain);
api.getCertificate(domain, paths.APP_CERTS_DIR, function (error, certFilePath, keyFilePath) {
api.getCertificate(domain, function (error, certFilePath, keyFilePath) {
if (error) return callback(error);
callback(null, certFilePath, keyFilePath);