From ae7f00c17fed60ef917001541ed8581ba873675e Mon Sep 17 00:00:00 2001 From: Arceliar Date: Mon, 12 Mar 2018 18:44:17 -0500 Subject: [PATCH] Update builds.md --- builds.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/builds.md b/builds.md index 7d2f602..e7f8835 100644 --- a/builds.md +++ b/builds.md @@ -11,8 +11,9 @@ let url = 'https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdra fetch(url) .then(res => res.json()) -.then((bins) => { - for (var bin in bins) { +.then(function (bins) { + for (var idx in bins) { + var bin = bins[idx] console.log("" + bin.path + "
"); } })