mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-05 06:49:48 +00:00
Add support for Windows-arm (#320)
* update to use pwsh if it is available * fix spacing * update install script * Update src/installer.ts Co-authored-by: Ivan <98037481+IvanZosimov@users.noreply.github.com> * update index.js * fix format Co-authored-by: Ivan <98037481+IvanZosimov@users.noreply.github.com>
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -275,7 +275,7 @@ class DotnetCoreInstaller {
|
||||
command += ` -ProxyBypassList ${process.env['no_proxy']}`;
|
||||
}
|
||||
// process.env must be explicitly passed in for DOTNET_INSTALL_DIR to be used
|
||||
const powershellPath = yield io.which('powershell', true);
|
||||
const powershellPath = (yield io.which('pwsh', false)) || (yield io.which('powershell', true));
|
||||
var options = {
|
||||
listeners: {
|
||||
stdout: (data) => {
|
||||
|
Reference in New Issue
Block a user