Fix inconsistency withing scriptArguments

This commit is contained in:
IvanZosimov 2022-09-29 13:55:50 +02:00
parent 57ce9fed6b
commit 40d37ff84f
2 changed files with 3 additions and 2 deletions

2
dist/index.js vendored
View File

@ -333,7 +333,7 @@ class DotnetCoreInstaller {
if (process.env['no_proxy'] != null) {
scriptArguments.push(`-ProxyBypassList ${process.env['no_proxy']}`);
}
scriptArguments.push(`-InstallDir '${DotnetCoreInstaller.installationDirectoryWindows}'`);
scriptArguments.push('-InstallDir', DotnetCoreInstaller.installationDirectoryWindows);
// process.env must be explicitly passed in for DOTNET_INSTALL_DIR to be used
scriptPath =
(yield io.which('pwsh', false)) || (yield io.which('powershell', true));

View File

@ -209,7 +209,8 @@ export class DotnetCoreInstaller {
}
scriptArguments.push(
`-InstallDir '${DotnetCoreInstaller.installationDirectoryWindows}'`
'-InstallDir',
DotnetCoreInstaller.installationDirectoryWindows
);
// process.env must be explicitly passed in for DOTNET_INSTALL_DIR to be used
scriptPath =