Skip to content

Commit

Permalink
Set asset_format to f to skip extraction by Extract::Negotiate
Browse files Browse the repository at this point in the history
  • Loading branch information
zmughal committed Oct 28, 2022
1 parent 4438013 commit 50d1114
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions alienfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ sub can_binary {
sub do_binary {
plugin 'Download::GitHub' => (
%github_info,
asset => 1,
asset_name => $binary_release_name_re,
version => qr/([0-9\.]+)/,
asset => 1,
asset_name => $binary_release_name_re,
asset_format => 'f',
version => qr/([0-9\.]+)/,
);

if( $binary_release_format eq '.msi' ) {
Expand Down

0 comments on commit 50d1114

Please sign in to comment.