Skip to content

Commit ef26a55

Browse files
committed
Fix "arm32" vs "arm" bug
1 parent d1cb599 commit ef26a55

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

put-multiarch/put-multiarch.pl

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,15 @@ ($arch)
7171
}x) {
7272
return (
7373
os => $1 // 'linux',
74-
architecture => ($2 eq 'i386' ? '386' : $2),
74+
architecture => (
75+
$2 eq 'i386'
76+
? '386'
77+
: (
78+
$2 eq 'arm32'
79+
? 'arm'
80+
: $2
81+
)
82+
),
7583
($3 ? (variant => $3) : ()),
7684
);
7785
}

0 commit comments

Comments
 (0)