Skip to content

Commit

Permalink
PublishToItch.ps1: Fix tag comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgen301 committed Dec 3, 2024
1 parent 1a0e03d commit 8edc3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autobuild/PublishToItch.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if (!$IsWindows) {

$channelName = "$osLower-$Arch"

if ($Tag -ne "v{$Env:VERSION}") {
if ($Tag -ne "v${Env:VERSION}") {
$channelName = "${Tag}-${channelName}"
}

Expand Down

0 comments on commit 8edc3ef

Please sign in to comment.