Fix appveyor build

This commit is contained in:
Leonardo Galli 2017-05-09 19:49:30 +02:00 committed by GitHub
commit b36ac091fc

View file

@ -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(() => {