Skip to content

Commit 4d8999e

Browse files
committed
Remove --force- prefix
1 parent e9129e5 commit 4d8999e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/rbenv-install

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ abs_dirname() {
2121
}
2222

2323
usage() {
24-
{ echo "usage: rbenv install [--force-build | --force-package] VERSION"
24+
{ echo "usage: rbenv install [--build | --package] VERSION"
2525
echo " rbenv install /path/to/definition"
2626
echo
2727
echo "Available versions:"
@@ -41,10 +41,10 @@ fi
4141

4242
force_build=""
4343
force_package=""
44-
if [ "$1" = "--force-build" ]; then
44+
if [ "$1" = "--build" ]; then
4545
force_build=1
4646
shift
47-
elif [ "$1" = "--force-package" ]; then
47+
elif [ "$1" = "--package" ]; then
4848
force_package=1
4949
shift
5050
fi

0 commit comments

Comments
 (0)