diff --git a/usr/lib/initcpio/install/arch_core_install b/usr/lib/initcpio/install/arch_core_install index 8e079f735..6c428b754 100644 --- a/usr/lib/initcpio/install/arch_core_install +++ b/usr/lib/initcpio/install/arch_core_install @@ -58,10 +58,10 @@ build () [[ -d devel/$(basename $i) ]] && rm -r devel/$(basename $i) done cd ${SVNTREE} - SEARCHSVN="$(find ./ -type d -name *"$(uname -m)" ! -name "testing*" ! -name "*unstable*") $(find ./ -type d -name *"any" ! -name "testing*" ! -name "*unstable*")" + SEARCHSVN="$(find ./ -type d -name *"$(uname -m)" ! -name "testing*") $(find ./ -type d -name *"any" ! -name "testing*")" else cd ${SVNTREE} - SEARCHSVN="$(find ./ -type d -name *"$(uname -m)" ! -name "testing*" ! -name "*unstable*") $(find ./ -type d -name *"any" ! -name "testing*" ! -name "*unstable*")" + SEARCHSVN="$(find ./ -type d -name *"$(uname -m)" ! -name "testing*") $(find ./ -type d -name *"any" ! -name "testing*")" fi # Download all packages PACKAGES=$(for i in ${SEARCHSVN};do ! [ "$(echo $i | awk -F/ '{print $3}')" = "" ] && (. $i/PKGBUILD; echo ${pkgname[@]});unset pkgname;done)