Skip to content

Commit 45280c1

Browse files
committed
Fix arch filtering for sidekick/warp
1 parent 6bd0424 commit 45280c1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

main.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -833,6 +833,12 @@ func doPackage(appName, license, release, packager, deps, scriptsDir string) err
833833
if appName == "mc-enterprise" && arch != "amd64" && arch != "arm64" {
834834
continue
835835
}
836+
if appName == "sidekick" && arch != "amd64" && arch != "arm64" {
837+
continue
838+
}
839+
if appName == "warp" && arch != "amd64" && arch != "arm64" {
840+
continue
841+
}
836842

837843
var buf bytes.Buffer
838844
err = mtmpl.Execute(&buf, releaseTmpl{

0 commit comments

Comments
 (0)