Changes based on code review

- Style changes for not requiring "else" in handlebar helpers
- Changed build to async
This commit is contained in:
Richard Ramos 2018-05-15 16:19:39 -04:00 committed by Pascal Precht
parent 457d78815f
commit 246f24ef54
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 1 additions and 2 deletions

View File

@ -34,8 +34,7 @@ class Scaffolding {
} }
const contract = contractConfiguration.contracts[contractName]; const contract = contractConfiguration.contracts[contractName];
const result = build(contract); build(contract);
this.embark.logger.info(result);
} }
} }