rev comment

This commit is contained in:
Michael Bradley, Jr 2018-09-04 07:36:21 -05:00
parent 7d65c2b0cd
commit c02199db0f
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class WebServer {
buildPlaceholderPage(cb) {
let html = Templates.embark_building_placeholder({buildingMsg: __('Embark is building, please wait...')});
fs.mkdirpSync(this.buildDir); // create buildDir/ folder if not already exists
fs.mkdirpSync(this.buildDir); // create buildDir if it does not exist
fs.writeFile(utils.joinPath(this.buildDir, 'index.html'), html, cb);
}