From 89d8017608c9729dd48c9179aba9b321f4799850 Mon Sep 17 00:00:00 2001 From: ilammy Date: Wed, 2 Oct 2019 01:09:14 +0300 Subject: [PATCH] Fix eslint warnings --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 219b6c5..9f780d2 100644 --- a/index.js +++ b/index.js @@ -84,9 +84,9 @@ async function main() { await fs.unlink(helper) } - for (string of environment) { + for (let string of environment) { const [name, value] = string.split('=') - for (pattern of InterestingVariables) { + for (let pattern of InterestingVariables) { if (name.match(pattern)) { core.exportVariable(name, value) break