From 14b708ab356d0c01288349dd8888c65f1a84ae9d Mon Sep 17 00:00:00 2001 From: Eduard Toloza Date: Fri, 16 Nov 2018 21:48:16 -0500 Subject: [PATCH] Improved documentation --- simpleaur | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpleaur b/simpleaur index 857ffe6..456f2b3 100755 --- a/simpleaur +++ b/simpleaur @@ -57,6 +57,7 @@ elif [ "$1" == "--purge" ] || [ "$1" == "-p" ]; then elif [ "$1" == "--purgepkg" ] || [ "$1" == "-pp" ]; then rm -rf "$pkgdown"/* exit +# The next 11 lines allow users to download PKGBUILDs from AUR elif [ "$1" == "--download" ] || [ "$1" == "-d" ]; then for pkgname in "${@:2}"; do curl -s -f -o "$pkgdown/PKGBUILD-$pkgname" "https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=$pkgname" @@ -132,7 +133,6 @@ for ipackage in "$@"; do fi done -#Ask to the user if want to remove the directory created for git printf "\n${GREEN}Info: finishing tasks... Deleting the simpleaur lockfile... Good bye${ALL_OFF}\n"