mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 07:00:28 +00:00
buildrepo: fix previous commit
This commit is contained in:
parent
55af44f026
commit
1e3c5a742b
@ -61,8 +61,8 @@ build() {
|
||||
pkgs=$(abuild listpkg)
|
||||
if all_exist $pkgs; then
|
||||
echo ">>> Copying " $pkgs
|
||||
cp -p -l $pkgs "$repodir/$repo/$CARCH"/ 2>/dev/null \
|
||||
|| cp -p $pkgs "$repodir/$repo/$CARCH"/ \
|
||||
cp -p -l $pkgs "$repodir/$repo/$arch"/ 2>/dev/null \
|
||||
|| cp -p $pkgs "$repodir/$repo/$arch"/ \
|
||||
|| needbuild="$needbuild $i"
|
||||
else
|
||||
needbuild="$needbuild $i"
|
||||
@ -81,7 +81,7 @@ build() {
|
||||
if [ -n "$dopurge" ]; then
|
||||
local tmp=$(mktemp /tmp/$program-XXXXXX)
|
||||
local purgefiles
|
||||
cd "$repodir/$repo/$CARCH" || return 1
|
||||
cd "$repodir/$repo/$arch" || return 1
|
||||
trap 'rm -f "$tmp"; exit 1' INT
|
||||
( listpackages "$1") >$tmp
|
||||
purge=$(ls *.apk 2>/dev/null | grep -v -w -f $tmp)
|
||||
|
Loading…
Reference in New Issue
Block a user