From 7b7f8c2fb99d7387f9043e635432d2388d8c4378 Mon Sep 17 00:00:00 2001 From: Thomas Boop Date: Fri, 16 Sep 2022 10:13:09 -0400 Subject: [PATCH] fix spacing --- src/installer.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/installer.ts b/src/installer.ts index 368c4c9..dc4a253 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -117,8 +117,7 @@ export class DotnetCoreInstaller { // process.env must be explicitly passed in for DOTNET_INSTALL_DIR to be used let powershellPath = await io.which('pwsh', false); - if (powershellPath == '') - { + if (powershellPath == '') { powershellPath = await io.which('powershell', true); }