From 7971f2699a1cfa8a3531b1da1480ca82d0e582c3 Mon Sep 17 00:00:00 2001 From: kumavis Date: Tue, 10 Sep 2019 18:52:31 +0800 Subject: [PATCH] lint fix --- development/metamaskbot-build-announce.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/development/metamaskbot-build-announce.js b/development/metamaskbot-build-announce.js index 8050263452bd..2e461e837681 100755 --- a/development/metamaskbot-build-announce.js +++ b/development/metamaskbot-build-announce.js @@ -26,12 +26,14 @@ async function start () { // build the github comment content // links to extension builds + const platforms = ['chrome', 'firefox', 'opera', 'edge'] const buildLinks = platforms.map(platform => { const url = `${BUILD_LINK_BASE}/builds/metamask-${platform}-${VERSION}.zip` return `${platform}` }).join(', ') // links to bundle browser builds + const bundles = ['background', 'ui', 'inpage', 'contentscript'] const bundleLinks = bundles.map(bundle => { const url = `${BUILD_LINK_BASE}/build-artifacts/source-map-explorer/${bundle}.html` return `${bundle}`