Compare commits

...

2 Commits

Author SHA1 Message Date
9d23e205d8 2.0.30 2019-01-16 02:34:48 +01:00
5ecdf7c9fd fix(core): update 2019-01-16 02:34:47 +01:00
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartacme", "name": "@pushrocks/smartacme",
"version": "2.0.29", "version": "2.0.30",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartacme", "name": "@pushrocks/smartacme",
"version": "2.0.29", "version": "2.0.30",
"private": false, "private": false,
"description": "acme implementation in TypeScript", "description": "acme implementation in TypeScript",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -86,7 +86,7 @@ export class CertManager {
} }
// otherwise lets continue // otherwise lets continue
const existingCertificate = this.retrieveCertificate(certDomainArg); const existingCertificate = await this.retrieveCertificate(certDomainArg);
if (existingCertificate) { if (existingCertificate) {
return 'existing'; return 'existing';
} }