mirror of https://github.com/embarklabs/embark.git
whitespace
This commit is contained in:
parent
6282e092f1
commit
e9ec968598
|
@ -55,7 +55,7 @@ class Pipeline {
|
|||
|
||||
next();
|
||||
},
|
||||
function writeContracts(next) {
|
||||
function writeContracts(next) {
|
||||
self.events.request('contracts:list', (_err, contracts) => {
|
||||
// ensure the .embark/contracts directory exists (create if not exists)
|
||||
fs.mkdirp(fs.dappPath(".embark/contracts", ''), (err) => {
|
||||
|
@ -79,7 +79,7 @@ class Pipeline {
|
|||
if(idx < contracts.length - 1) importsHelperFile.write(',\n'); // add a comma if we have more contracts to add
|
||||
});
|
||||
}, function(){
|
||||
importsHelperFile.write('\n}'); // close the module.exports = {}
|
||||
importsHelperFile.write('\n}'); // close the module.exports = {}
|
||||
importsHelperFile.close(next); // close the write stream
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue