aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron W. Swenson <titanofold@gentoo.org>2011-04-26 07:37:42 -0400
committerAaron W. Swenson <titanofold@gentoo.org>2011-04-26 07:37:42 -0400
commit7f5e7383defb3be8d3a0f0a4278edac585951ec5 (patch)
tree8ab783787618d635cdcd01defbc5af54b3fb73e9
parentPut double quotes back around '-name' to be consistent with the rest of the (diff)
downloadeselect-7f5e7383defb3be8d3a0f0a4278edac585951ec5.tar.gz
eselect-7f5e7383defb3be8d3a0f0a4278edac585951ec5.tar.bz2
eselect-7f5e7383defb3be8d3a0f0a4278edac585951ec5.zip
Missed a trailing slash.
-rw-r--r--postgresql.eselect2
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresql.eselect b/postgresql.eselect
index 7ebbfde..1e2e623 100644
--- a/postgresql.eselect
+++ b/postgresql.eselect
@@ -90,7 +90,7 @@ unlinker() {
### Get Slots Function ###
# Find all available slots in the preferred lib_dir() and return them.
get_slots() {
- echo $(find "${B_PATH}/$(lib_dir)" -maxdepth 1 -type d \
+ echo $(find "${B_PATH}/$(lib_dir)/" -maxdepth 1 -type d \
-regex '.*postgresql-[0-9][0-9]*\.[0-9][0-9]*' | \
sed -re 's#.*([0-9]+\.[0-9]+)$#\1#' | sort -n)
}