mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-09 13:36:14 +00:00
Merge pull request #571 from embark-framework/bug_fix/upload-fail-solc-plugin
Fix for embark upload failing when embark-solc plugin is installed.
This commit is contained in:
commit
c492ed97cc
@ -346,12 +346,15 @@ class Embark {
|
|||||||
})
|
})
|
||||||
.catch(callback);
|
.catch(callback);
|
||||||
});
|
});
|
||||||
|
engine.events.on('check:backOnline:Ethereum', function () {
|
||||||
|
engine.logger.info(__('Ethereum node detected') + '..');
|
||||||
|
engine.config.reloadConfig();
|
||||||
engine.events.request('deploy:contracts', function (err) {
|
engine.events.request('deploy:contracts', function (err) {
|
||||||
engine.logger.info(__("finished deploying").underline);
|
|
||||||
if (err) {
|
if (err) {
|
||||||
callback(err);
|
return;
|
||||||
}
|
}
|
||||||
|
engine.logger.info(__('Deployment Done'));
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
], function (err, _result) {
|
], function (err, _result) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user