diff --git a/magefile.go b/magefile.go index 185ad0bd1..cd2fa82d7 100644 --- a/magefile.go +++ b/magefile.go @@ -559,7 +559,9 @@ func (Release) Compress(ctx context.Context) error { return nil } // No mips or s390x for you today - if strings.Contains(info.Name(), "mips") || strings.Contains(info.Name(), "s390x") { + if strings.Contains(info.Name(), "mips") || + strings.Contains(info.Name(), "s390x") || + strings.Contains(info.Name(), "riscv64") { // not supported by upx return nil }