Skip to content

Commit

Permalink
Fix handling zstd-compressed packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wandrien committed May 22, 2023
1 parent 2c78f53 commit d750183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_package.sh
Expand Up @@ -42,12 +42,12 @@ export MAKEPKG_BUILD_HOOK="$REPO_BUILD_ROOT/makepkg_build_hook.sh"
$MAKEPKG

update_status "$1" "INSTALL"
for p in *.pkg.tar.xz ; do
for p in *.pkg.tar.* ; do
run_pacman --noconfirm -U "`readlink -f "$p"`"
done

update_status "$1" "REPO"
cp -- *.pkg.tar.xz "$REPO_BUILD_ROOT/repo/"
cp -- *.pkg.tar.* "$REPO_BUILD_ROOT/repo/"
touch "$REPO_BUILD_ROOT/repo/.timestamp.build.$1"

update_status "$1" "DONE"
Expand Down

0 comments on commit d750183

Please sign in to comment.