From 7ba742ab41a78956c94238a2ceee25cb9ca659c4 Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Fri, 17 May 2019 00:36:39 -0400 Subject: [PATCH] rebuild: remove --no-pull --- rebuild.sh | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/rebuild.sh b/rebuild.sh index d137c3b..010ba88 100755 --- a/rebuild.sh +++ b/rebuild.sh @@ -81,7 +81,6 @@ build_package() { shift local special_handling="None" - local no_pull local install_as local makepkg_args="-srLcCf --noconfirm" local pull_url="https://aur.archlinux.org/$pkg.git" @@ -97,10 +96,6 @@ build_package() { pull_url=$2 shift 2 ;; - --no-pull) - no_pull=1 - shift - ;; --install-as) install_as=$2 shift 2 @@ -122,11 +117,7 @@ build_package() { fi cd $pkg - - if [[ ! $no_pull ]] - then - git pull - fi + git pull case $special_handling in None)