commit: 4a6f0ad3208a0e27a24377c4a2aa3d3cb78517c4
Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 6 11:53:49 2017 +0000
Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Mon Feb 6 11:53:49 2017 +0000
URL:
https://gitweb.gentoo.org/proj/postgresql/eselect.git/commit/?id=4a6f0ad3
Remove redundant do_unset() call
do_set() calls do_unset(). No need to call it before do_set().
postgresql.eselect | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/postgresql.eselect b/postgresql.eselect
index 83db02f..d7229e5 100644
--- a/postgresql.eselect
+++ b/postgresql.eselect
@@ -382,11 +382,8 @@ do_update() {
# may have changed.
do_set ${active_slot}
elif [[ ${#slots[@]} -ne 0 ]] ; then
- # If $slots is not empty but ${active_slot} is set, the
active_slot
- # must have been unmerged and its links need to be cleaned
before...
- [[ ${active_slot} != "(none)" ]] && do_unset ${active_slot}
-
- # Setting the highest slot available.
+ # If $slots is not empty and active_slot is not in the list,
set the
+ # highest slot available.
do_set ${slots[-1]}
elif [[ ${active_slot} != "(none)" ]] ; then
# If slots is empty, but active_slot still has a value, an
unset must