mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 16:52:56 -07:00
Merge pull request #2454 from frebib/fix-2453
Fix non-Windows builds. Fixes #2453
This commit is contained in:
commit
94a1f3a00d
1 changed files with 1 additions and 1 deletions
|
@ -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", () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue