From 8edc3ef669eac1abcf672fbab26440ae5025b6ff Mon Sep 17 00:00:00 2001 From: George Tokmaji Date: Tue, 3 Dec 2024 20:17:49 +0100 Subject: [PATCH] PublishToItch.ps1: Fix tag comparison --- autobuild/PublishToItch.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild/PublishToItch.ps1 b/autobuild/PublishToItch.ps1 index 49ea60b6..1a984ac2 100644 --- a/autobuild/PublishToItch.ps1 +++ b/autobuild/PublishToItch.ps1 @@ -47,7 +47,7 @@ if (!$IsWindows) { $channelName = "$osLower-$Arch" -if ($Tag -ne "v{$Env:VERSION}") { +if ($Tag -ne "v${Env:VERSION}") { $channelName = "${Tag}-${channelName}" }