Skip to content

Commit

Permalink
Merge d5cc705 into 26e9617
Browse files Browse the repository at this point in the history
  • Loading branch information
domyd committed Feb 22, 2018
2 parents 26e9617 + d5cc705 commit 342187f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Task("BuildEventBuilder")
ArgumentCustomization = args => args.Append("/bl:eventbuilder.binlog /m")
}
.SetConfiguration("Release")
.WithProperty("AndroidSdkDirectory", androidHome)
.WithProperty("AndroidSdkDirectory", androidHome.Quote())
.WithProperty("TreatWarningsAsErrors", treatWarningsAsErrors.ToString())
.SetVerbosity(Verbosity.Minimal)
.SetNodeReuse(false));
Expand Down Expand Up @@ -197,7 +197,7 @@ Task("BuildReactiveUI")
ArgumentCustomization = args => args.Append("/bl:reactiveui-build.binlog /m")
}
.WithTarget("build;pack")
.WithProperty("AndroidSdkDirectory", androidHome)
.WithProperty("AndroidSdkDirectory", androidHome.Quote())
.WithProperty("PackageOutputPath", MakeAbsolute(Directory(artifactDirectory)).ToString().Quote())
.WithProperty("TreatWarningsAsErrors", treatWarningsAsErrors.ToString())
.SetConfiguration("Release")
Expand All @@ -215,7 +215,7 @@ Task("BuildReactiveUI")
ArgumentCustomization = args => args.Append("/bl:reactiveui-restore.binlog /m")
}
.WithTarget("restore")
.WithProperty("AndroidSdkDirectory", androidHome)
.WithProperty("AndroidSdkDirectory", androidHome.Quote())
.WithProperty("Version", nugetVersion.ToString())
.SetVerbosity(Verbosity.Minimal));
Expand Down

0 comments on commit 342187f

Please sign in to comment.