Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async function installMSYS2(url, rubyPrefix = process.env.RUNNER_TEMP) {

const ridk = `${rubyPrefix}\\bin\\ridk.cmd`
if (fs.existsSync(ridk)) {
await common.measure('Setting up ridk environment', async () => exportCommandEnv(`set MAKE=make && "${ridk}" enable`))
await common.measure('Setting up ridk environment', async () => exportCommandEnv(`set "MAKE=make" && "${ridk}" enable`))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Weird, so it was parsed like set MAKE=make && "${ridk}" enable?
Or like set MAKE="make && ${ridk} enable"?

Copy link
Contributor Author

@ntkme ntkme May 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}

// Examples:
Expand Down Expand Up @@ -212,7 +212,7 @@ async function installVCPKG(url) {
throw new Error(`Missing vcVars file: ${vcVars}`)
}

return exportCommandEnv(`set MAKE=nmake && "${vcVars}"`)
return exportCommandEnv(`set "MAKE=nmake" && "${vcVars}"`)
})
}

Expand Down
Loading