From 4d8999e9d10651adee3030d9e74667a852aac846 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Wed, 19 Oct 2011 15:21:44 -0500 Subject: [PATCH] Remove --force- prefix --- bin/rbenv-install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/rbenv-install b/bin/rbenv-install index f8d36d6b..fc70f2b8 100755 --- a/bin/rbenv-install +++ b/bin/rbenv-install @@ -21,7 +21,7 @@ abs_dirname() { } usage() { - { echo "usage: rbenv install [--force-build | --force-package] VERSION" + { echo "usage: rbenv install [--build | --package] VERSION" echo " rbenv install /path/to/definition" echo echo "Available versions:" @@ -41,10 +41,10 @@ fi force_build="" force_package="" -if [ "$1" = "--force-build" ]; then +if [ "$1" = "--build" ]; then force_build=1 shift -elif [ "$1" = "--force-package" ]; then +elif [ "$1" = "--package" ]; then force_package=1 shift fi