Switch to mage #651

Merged
konrad merged 61 commits from feature/mage into master 2020-09-03 15:13:21 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 5fe93715d3 - Show all commits

View File

@ -469,8 +469,8 @@ func (Release) Compress(ctx context.Context) error {
if !strings.Contains(info.Name(), Executable) {
return nil
}
// No mips for you today
if strings.Contains(info.Name(), "mips") {
// No mips or s390x for you today
if strings.Contains(info.Name(), "mips") || strings.Contains(info.Name(), "s390x") {
return nil
}