Skip to content

Commit

Permalink
extension: fix issue where gatheres cannot be found (#4592)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhulce authored Feb 20, 2018
1 parent c510a49 commit 2796bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-extension/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ gulp.task('browserify-lighthouse', () => {
bundle = bundle.require(audit, {expose: audit.replace(corePath, '../')});
});
gatherers.forEach(gatherer => {
bundle = bundle.require(gatherer, {expose: gatherer.replace(driverPath, './')});
bundle = bundle.require(gatherer, {expose: gatherer.replace(driverPath, '../gather/')});
});
computedArtifacts.forEach(artifact => {
bundle = bundle.require(artifact, {expose: artifact.replace(corePath, './')});
Expand Down

0 comments on commit 2796bbd

Please sign in to comment.