index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Eli Schwartz <eschwartz@archlinux.org> | 2018-05-09 00:18:39 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-05-12 21:34:54 +1000 |
commit | 0d356c27c17fb62ed31327d634748f64c781dc49 (patch) | |
tree | 70e6d67416496f51d0db287aa61eab03132e0b97 /scripts/repo-add.sh.in | |
parent | 1741bdaf81cc7c0881ee7a26861b3d94c384f13f (diff) |
-rw-r--r-- | scripts/repo-add.sh.in | 3 |
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index 4b3a03ea..8e577a1e 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -811,11 +811,12 @@ fi prepare_repo_db +fail=0 for arg in "${args[@]:1}"; do case $cmd in repo-add) add "$arg" ;; repo-remove) remove "$arg" ;; - esac && success=1 + esac || fail=1 done # if the whole operation was a success, re-zip and rotate databases |