Skip to content

Commit

Permalink
Merge pull request #2454 from frebib/fix-2453
Browse files Browse the repository at this point in the history
Fix non-Windows builds. Fixes #2453
  • Loading branch information
tidusjar authored Aug 19, 2018
2 parents e9f2d9a + e84b108 commit 94a1f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ombi/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function getEnvOptions() {

function webpack(type) {
// 'webpack' instead of direct path can cause https://github.com/angular/angular-cli/issues/6417
return run(`node node_modules\\webpack\\bin\\webpack.js --config webpack.config${type ? `.${type}` : ""}.ts${getEnvOptions()}`).exec();
return run(`node ${path.join('node_modules', 'webpack', 'bin', 'webpack.js')} --config webpack.config${type ? `.${type}` : ""}.ts${getEnvOptions()}`).exec();
}

gulp.task("vendor", () => {
Expand Down

0 comments on commit 94a1f3a

Please sign in to comment.