Skip to content
This repository was archived by the owner on May 15, 2024. It is now read-only.

Commit 9673739

Browse files
committed
async
1 parent 9786fd4 commit 9673739

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DeviceTests/build.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Task("test-ios-emu")
137137
// Android tasks
138138

139139
Task("build-android")
140-
.Does(() =>
140+
.Does(async () =>
141141
{
142142
// Setup latest Xamarin.Android SDK
143143
await Boots (Product.XamarinAndroid, ReleaseChannel.Stable);

build.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var GIT_SHA = Argument("gitSha", EnvironmentVariable("GIT_SHA") ?? "");
77
var GIT_BRANCH_NAME = Argument("gitBranch", EnvironmentVariable("GIT_BRANCH_NAME") ?? "");
88

99
Task("prepare")
10-
.Does(() =>
10+
.Does(async () =>
1111
{
1212
// Setup latest Xamarin.Android SDK
1313
await Boots (Product.XamarinAndroid, ReleaseChannel.Stable);

0 commit comments

Comments
 (0)