Fix eslint warnings

This commit is contained in:
ilammy
2019-10-02 01:09:14 +03:00
parent 5e81beaeab
commit 89d8017608
+2 -2
View File
@@ -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