From e2c863351cb4937c70675db68715b36645cf2b51 Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Tue, 14 Jul 2020 20:40:33 -0500 Subject: [PATCH] Don't reinstall up-to-date packages. --- simpleaur | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpleaur b/simpleaur index 80a1a87..ad1ec0f 100755 --- a/simpleaur +++ b/simpleaur @@ -152,7 +152,7 @@ cd "$basebuilddir" || exit for ipackage in "$@"; do if [ -d "$ipackage" ]; then cd "$ipackage" || exit - if makepkg -sci --noconfirm ; then + if makepkg -sci --noconfirm --needed ; then cd "$basebuilddir" || exit printf "\n${GREEN}The package ${BLUE}[ $ipackage ] ${GREEN}has been installed.\n" continue