We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9129e5 commit 4d8999eCopy full SHA for 4d8999e
bin/rbenv-install
@@ -21,7 +21,7 @@ abs_dirname() {
21
}
22
23
usage() {
24
- { echo "usage: rbenv install [--force-build | --force-package] VERSION"
+ { echo "usage: rbenv install [--build | --package] VERSION"
25
echo " rbenv install /path/to/definition"
26
echo
27
echo "Available versions:"
@@ -41,10 +41,10 @@ fi
41
42
force_build=""
43
force_package=""
44
-if [ "$1" = "--force-build" ]; then
+if [ "$1" = "--build" ]; then
45
force_build=1
46
shift
47
-elif [ "$1" = "--force-package" ]; then
+elif [ "$1" = "--package" ]; then
48
force_package=1
49
50
fi
0 commit comments