diff options
-rw-r--r-- | eselect-ruby/ruby.eselect | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eselect-ruby/ruby.eselect b/eselect-ruby/ruby.eselect index b89b998..66b5bc0 100644 --- a/eselect-ruby/ruby.eselect +++ b/eselect-ruby/ruby.eselect @@ -1,17 +1,17 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # vim: set ft=sh: DESCRIPTION="Manage Ruby symlinks" MAINTAINER="ruby@gentoo.org" -VERSION="20231226" +VERSION="20241225" bindir=/usr/bin libdir=/usr/lib man1dir=/usr/share/man/man1 find_targets() { - for t in ${EROOT}${bindir}/${1:-ruby}{18,19,20,21,22,23,24,25,26,27,30,31,32,33} ; do + for t in ${EROOT}${bindir}/${1:-ruby}{18,19,20,21,22,23,24,25,26,27,30,31,32,33,34} ; do [[ -e $t ]] || continue echo ${t} done |