mirror of
https://github.com/microsoft/setup-msbuild.git
synced 2024-11-21 19:11:08 +07:00
Fixing formatting on string arg [skip ci]
This commit is contained in:
parent
750ad4a08c
commit
1ccd12233c
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -1703,7 +1703,7 @@ function run() {
|
||||
core.debug(`Found installation path: ${installationPath}`);
|
||||
// x64 and arm64 only exist in one possible location, so no fallback probing
|
||||
if (MSBUILD_ARCH === 'x64' || MSBUILD_ARCH === 'arm64') {
|
||||
let toolPath = path.join(installationPath, 'MSBuild\\Current\\Bin\\${MSBUILD_ARCH}\\MSBuild.exe');
|
||||
let toolPath = path.join(installationPath, `MSBuild\\Current\\Bin\\${MSBUILD_ARCH}\\MSBuild.exe`);
|
||||
core.debug(`Checking for path: ${toolPath}`);
|
||||
if (!fs.existsSync(toolPath)) {
|
||||
return;
|
||||
|
@ -75,7 +75,7 @@ async function run(): Promise<void> {
|
||||
if (MSBUILD_ARCH === 'x64' || MSBUILD_ARCH === 'arm64') {
|
||||
let toolPath = path.join(
|
||||
installationPath,
|
||||
'MSBuild\\Current\\Bin\\${MSBUILD_ARCH}\\MSBuild.exe'
|
||||
`MSBuild\\Current\\Bin\\${MSBUILD_ARCH}\\MSBuild.exe`
|
||||
)
|
||||
core.debug(`Checking for path: ${toolPath}`)
|
||||
if (!fs.existsSync(toolPath)) {
|
||||
|
Loading…
Reference in New Issue
Block a user