mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-07 06:07:19 +08:00
Fix eslint warnings
This commit is contained in:
@@ -84,9 +84,9 @@ async function main() {
|
|||||||
await fs.unlink(helper)
|
await fs.unlink(helper)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (string of environment) {
|
for (let string of environment) {
|
||||||
const [name, value] = string.split('=')
|
const [name, value] = string.split('=')
|
||||||
for (pattern of InterestingVariables) {
|
for (let pattern of InterestingVariables) {
|
||||||
if (name.match(pattern)) {
|
if (name.match(pattern)) {
|
||||||
core.exportVariable(name, value)
|
core.exportVariable(name, value)
|
||||||
break
|
break
|
||||||
|
|||||||
Reference in New Issue
Block a user