Skip to content

Commit b75ebaa

Browse files
authored
Fix multiple apps support for open.apps (#245)
1 parent 01887ed commit b75ebaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const open = async (target, options) => {
221221
};
222222

223223
function detectArchBinary(binary) {
224-
if (typeof binary === 'string') {
224+
if (typeof binary === 'string' || Array.isArray(binary)) {
225225
return binary;
226226
}
227227

0 commit comments

Comments
 (0)