mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fix appveyor build
This commit is contained in:
parent
3ab3fbfd57
commit
b36ac091fc
1 changed files with 7 additions and 5 deletions
|
@ -104,11 +104,13 @@ Task("Compile").Does(() => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("Gulp").Does(() => {
|
Task("Gulp").Does(() => {
|
||||||
Npm
|
NpmInstall(new NpmInstallSettings {
|
||||||
.WithLogLevel(NpmLogLevel.Silent)
|
LogLevel = NpmLogLevel.Silent,
|
||||||
.FromPath(".")
|
WorkingDirectory = "./",
|
||||||
.Install()
|
Production = true
|
||||||
.RunScript("build");
|
});
|
||||||
|
|
||||||
|
NpmRunScript("build");
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("PackageMono").Does(() => {
|
Task("PackageMono").Does(() => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue