Skip to content

Commit

Permalink
fix publish changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Raicuparta committed Nov 9, 2024
1 parent 5a9d086 commit 612f31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $version = [regex]::Match($msiName, '.+_(.+)_.+_.+').Groups[1].Value
$signature = Get-Content -Path "$msiFolder/*.sig" -Raw

# Read changelog from environment variable.
$changelog = $env:RAI_PAL_CHANGELOG -or "Someone forgot to include a changelog."
$changelog = $env:RAI_PAL_CHANGELOG ?? "Someone forgot to include a changelog."

# Create json that's used by Rai Pal for checking updates.
$updaterJson = ConvertTo-Json -InputObjec @{
Expand Down

0 comments on commit 612f31a

Please sign in to comment.