Skip to content

Commit

Permalink
utils/gh-dl-artifact: Accept any prefix for tar.gz package
Browse files Browse the repository at this point in the history
When brandlabling this may not be infix-, rather vendor-,
 use * for now.
  • Loading branch information
mattiaswal committed Feb 4, 2025
1 parent 5e89d8e commit 6ecf002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/gh-dl-artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ gh api $url >$zip

ixmsg "Extracting artifact"
mkdir -p $imgdir
unzip -p $zip "infix-${arch}*.tar.gz" | gunzip | tar -C $imgdir -x --strip-components=1
unzip -p $zip "*-${arch}*.tar.gz" | gunzip | tar -C $imgdir -x --strip-components=1


ixmsg "Done"
Expand Down

0 comments on commit 6ecf002

Please sign in to comment.