Skip to content

Commit

Permalink
Use linux path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaunLawrie committed Oct 23, 2023
1 parent 8f520a7 commit 943f9d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
shell: pwsh
run: |
$ErrorActionPreference = "Stop"
$env:PSModulePath = @($env:PSModulePath, ".\PwshSpectreConsole\") -join ";"
$env:PSModulePath = @($env:PSModulePath, ".\PwshSpectreConsole\") -join ":"
$version = Get-Module PwshSpectreConsole -ListAvailable | Sort-Object -Property Version -Descending | Select-Object -First 1 -ExpandProperty Version
if($null -eq $version) { throw "Failed to load version" }
$newVersion = [version]::new($version.Major, $version.Minor, $version.Build + 1)
Expand Down

0 comments on commit 943f9d1

Please sign in to comment.