mirror of
https://github.com/sdkman/sdkman-cli.git
synced 2026-02-01 02:03:18 -05:00
Fix: extract the help command.
This commit is contained in:
@@ -21,17 +21,6 @@
|
||||
# common internal function definitions
|
||||
#
|
||||
|
||||
function __gvmtool_help {
|
||||
echo ""
|
||||
echo "Usage: gvm <command> <candidate> [version]"
|
||||
echo ""
|
||||
echo " command : install, uninstall, list, use, current, version, default, selfupdate, broadcast or help"
|
||||
echo " candidate : groovy, grails, griffon, gradle, vert.x"
|
||||
echo " version : optional, defaults to latest stable if not provided"
|
||||
echo ""
|
||||
echo "eg: gvm install groovy"
|
||||
}
|
||||
|
||||
function __gvmtool_check_candidate_present {
|
||||
if [ -z "$1" ]; then
|
||||
echo -e "\nNo candidate provided."
|
||||
|
||||
28
src/main/resources/scripts/gvm-help.sh
Normal file
28
src/main/resources/scripts/gvm-help.sh
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
#
|
||||
# Copyright 2012 Marco Vermeulen
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
function __gvmtool_help {
|
||||
echo ""
|
||||
echo "Usage: gvm <command> <candidate> [version]"
|
||||
echo ""
|
||||
echo " command : install, uninstall, list, use, current, version, default, selfupdate, broadcast or help"
|
||||
echo " candidate : groovy, grails, griffon, gradle, vert.x"
|
||||
echo " version : optional, defaults to latest stable if not provided"
|
||||
echo ""
|
||||
echo "eg: gvm install groovy"
|
||||
}
|
||||
@@ -42,6 +42,7 @@ And(~'^the gvm module scripts are placed in the src folder$') {->
|
||||
assert new File("$gvmDir/src", "gvm-uninstall.sh").exists()
|
||||
assert new File("$gvmDir/src", "gvm-use.sh").exists()
|
||||
assert new File("$gvmDir/src", "gvm-version.sh").exists()
|
||||
assert new File("$gvmDir/src", "gvm-help.sh").exists()
|
||||
}
|
||||
|
||||
And(~'^the staging folder is cleaned up$') {->
|
||||
|
||||
Reference in New Issue
Block a user