File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,13 @@ var Embark = {
151151 } ) ;
152152 } ,
153153 function buildPipeline ( abi , callback ) {
154- var pipeline = new Pipeline ( { } ) ;
154+ self . logger . trace ( "Building Assets" ) ;
155+ var pipeline = new Pipeline ( {
156+ buildDir : self . config . buildDir ,
157+ contractsFiles : self . config . contractsFiles ,
158+ assetFiles : self . config . assetFiles ,
159+ logger : self . logger
160+ } ) ;
155161 pipeline . build ( abi ) ;
156162 callback ( ) ;
157163 }
@@ -227,8 +233,8 @@ var Embark = {
227233 var self = this ;
228234 async . waterfall ( [
229235 function buildAndDeploy ( callback ) {
230- Embark . buildAndDeploy ( function ( contractsManager ) {
231- callback ( null , contractsManager ) ;
236+ Embark . buildAndDeploy ( function ( err , contractsManager ) {
237+ callback ( err , contractsManager ) ;
232238 } ) ;
233239 } ,
234240 function generateABI ( contractsManager , callback ) {
You can’t perform that action at this time.
0 commit comments