purge-distfile: improve template scan speed
This commit is contained in:
parent
b30bb3e8fa
commit
1c4a971d74
|
@ -25,7 +25,8 @@ purge_distfiles() {
|
|||
fi
|
||||
percent=-1
|
||||
for template in ${templates[@]}; do
|
||||
pkg="$(echo "$template" | cut -d / -f 2)"
|
||||
pkg=${template#*/}
|
||||
pkg=${pkg%/*}
|
||||
if [ ! -L "srcpkgs/$pkg" ]; then
|
||||
unset checksum
|
||||
source $template 2>/dev/null
|
||||
|
|
Loading…
Reference in New Issue