Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/postgresql/eselect:stateless commit in: /
Date: Mon, 06 Feb 2017 13:19:48
Message-Id: 1486381421.2901113fc0cf9f574729af30aef33cea26becbc9.titanofold@gentoo
1 commit: 2901113fc0cf9f574729af30aef33cea26becbc9
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 6 11:43:41 2017 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 11:43:41 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/postgresql/eselect.git/commit/?id=2901113f
7
8 Eliminate some noise
9
10 Removed unnecessary echo about generating new links.
11
12 postgresql.eselect | 6 ++----
13 1 file changed, 2 insertions(+), 4 deletions(-)
14
15 diff --git a/postgresql.eselect b/postgresql.eselect
16 index b8ecbe1..67f7b74 100644
17 --- a/postgresql.eselect
18 +++ b/postgresql.eselect
19 @@ -199,9 +199,8 @@ do_set() {
20 echo "done."
21 fi
22
23 - echo "Setting ${slot} as the default..."
24 + echo -ne "Setting ${slot} as the default..."
25
26 - echo -ne "\tGenerating new links..."
27 # Sources for header files
28 # Targets are listed in the global variable INCLUDE_TARGETS.
29 #
30 @@ -264,8 +263,7 @@ do_set() {
31 # base name
32 ln -s "postgresql-${slot}" "${USR_PATH}/share/postgresql"
33
34 - echo "done."
35 - echo "Setting ${slot} as default was successful!"
36 + echo "success!"
37 }
38
39 ### Unset Action ###