Skip to content

Commit 77beb44

Browse files
authored
Merge pull request #204 from webpolis/webpolis-patch-2
embark build wasn't deploying assets
2 parents 6bcfa7e + cae39d8 commit 77beb44

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)