diff --git a/build.cake b/build.cake index 9394f275..f2c471ff 100644 --- a/build.cake +++ b/build.cake @@ -316,12 +316,16 @@ Task("DownloadGitHubReleaseArtifacts") foreach(var asset in DeserializeJson(GetResource(assets_url))) { + Information("In the loop.."); + var file = packagesDir + File(asset.Value("name")); Information("Downloading " + file); DownloadFile(asset.Value("browser_download_url"), file); } + + Information("Out of the loop..."); }); Task("ReleasePackagesToStableFeed")