From b4635ad9f15e73697fc3417678becb1ecfda123f Mon Sep 17 00:00:00 2001 From: deadlydog Date: Thu, 22 Feb 2024 17:25:20 -0600 Subject: [PATCH] ci: Simplify code a bit --- .github/workflows/build-and-test-powershell-module.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test-powershell-module.yml b/.github/workflows/build-and-test-powershell-module.yml index 2008498..ed80c05 100644 --- a/.github/workflows/build-and-test-powershell-module.yml +++ b/.github/workflows/build-and-test-powershell-module.yml @@ -181,7 +181,7 @@ jobs: Write-Output "Reading in environment variables." [string] $moduleName = $Env:powerShellModuleName - [string] $moduleDirectoryPath = Resolve-Path -Path $Env:powerShellModuleDirectoryPath + [string] $moduleDirectoryPath = $Env:powerShellModuleDirectoryPath [string] $moduleManifestFileName = $moduleName + '.psd1' [string] $prereleaseArtifactModuleDirectoryPath = Join-Path -Path $Env:prereleaseModuleArtifactDirectoryPath -ChildPath $moduleName [string] $stableArtifactModuleDirectoryPath = Join-Path -Path $Env:stableModuleArtifactDirectoryPath -ChildPath $moduleName