5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-19 21:52:31 +00:00

Update builds.md

This commit is contained in:
Arceliar 2018-03-12 18:44:17 -05:00 committed by GitHub
parent f1d0a8a0b1
commit ae7f00c17f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,9 @@ let url = 'https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdra
fetch(url) fetch(url)
.then(res => res.json()) .then(res => res.json())
.then((bins) => { .then(function (bins) {
for (var bin in bins) { for (var idx in bins) {
var bin = bins[idx]
console.log("<a href=\"" + bin.url + "\">" + bin.path + "</a><br/>"); console.log("<a href=\"" + bin.url + "\">" + bin.path + "</a><br/>");
} }
}) })