commit: e64cb2825a6429fcb3e7c760538bcfa3890faa97
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 19:13:14 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 19:13:14 2016 +0000
URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=e64cb282
Rename the "modules" action to "list-modules".
The name "list-modules" was always more appropriate; it just took a
moment to realize that "-" is valid in bash function names.
src/php.eselect.in.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/php.eselect.in.in b/src/php.eselect.in.in
index ac05d3a..8f241ce 100644
--- a/src/php.eselect.in.in
+++ b/src/php.eselect.in.in
@@ -620,12 +620,12 @@ do_cleanup() {
done
}
-## modules action
+## list-modules action
-describe_modules() {
+describe_list-modules() {
echo "output a space-separated list of valid modules"
}
-do_modules() {
+do_list-modules() {
echo "${MODULES}"
}