Skip to content

Commit

Permalink
fix(scripts/build-bootstraps.sh): update current_package_arch regex
Browse files Browse the repository at this point in the history
  • Loading branch information
sylirre committed Oct 19, 2024
1 parent 802b9ac commit 82b24ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-bootstraps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ extract_debs() {
for deb in *.deb; do

current_package_name="$(echo "$deb" | sed -E 's/^([^_]+).*/\1/' )"
current_package_arch="$(echo "$deb" | sed -E 's/.*_(.*).deb$/\1/' )"
current_package_arch="$(echo "$deb" | sed -E 's/.*_(aarch64|all|arm|i686|x86_64).deb$/\1/' )"
echo "current_package_name: '$current_package_name'"
echo "current_package_arch: '$current_package_arch'"

Expand Down

0 comments on commit 82b24ab

Please sign in to comment.