mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -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) {
|
function webpack(type) {
|
||||||
// 'webpack' instead of direct path can cause https://github.com/angular/angular-cli/issues/6417
|
// '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", () => {
|
gulp.task("vendor", () => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue