Browse Source

Merge pull request #129 from zeit/alias-fix

Add a missing await
master
Tony Kovanen 8 years ago
committed by GitHub
parent
commit
b02849fba8
  1. 2
      lib/alias.js

2
lib/alias.js

@ -161,7 +161,7 @@ export default class Alias extends Now {
if (!isZeitWorld(nameservers)) {
if (this._debug) console.log(`> [debug] Trying to register a non-ZeitWorld domain ${domain} for the current user`);
this.setupDomain(domain, { isExternal: true });
await this.setupDomain(domain, { isExternal: true });
}
console.log(`> Verification ${chalk.bold('OK')}!`);

Loading…
Cancel
Save