mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-22 18:22:49 +08:00
more logging
This commit is contained in:
parent
b0131bb264
commit
261f6130c8
@ -316,12 +316,16 @@ Task("DownloadGitHubReleaseArtifacts")
|
|||||||
|
|
||||||
foreach(var asset in DeserializeJson<JArray>(GetResource(assets_url)))
|
foreach(var asset in DeserializeJson<JArray>(GetResource(assets_url)))
|
||||||
{
|
{
|
||||||
|
Information("In the loop..");
|
||||||
|
|
||||||
var file = packagesDir + File(asset.Value<string>("name"));
|
var file = packagesDir + File(asset.Value<string>("name"));
|
||||||
|
|
||||||
Information("Downloading " + file);
|
Information("Downloading " + file);
|
||||||
|
|
||||||
DownloadFile(asset.Value<string>("browser_download_url"), file);
|
DownloadFile(asset.Value<string>("browser_download_url"), file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Information("Out of the loop...");
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("ReleasePackagesToStableFeed")
|
Task("ReleasePackagesToStableFeed")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user