mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-06 21:57:19 +08:00
Fix eslint warnings
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user