mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-01 14:44:48 +01:00
ruby-build 20110906
This commit is contained in:
parent
95e8b564a3
commit
f69655d2f4
1 changed files with 12 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
RUBY_BUILD_VERSION="20110906"
|
||||
|
||||
set -E
|
||||
exec 3<&2 # preserve original stderr at fd 3
|
||||
|
||||
|
@ -128,8 +130,13 @@ use_gcc42_on_lion() {
|
|||
fi
|
||||
}
|
||||
|
||||
version() {
|
||||
echo "ruby-build ${RUBY_BUILD_VERSION}"
|
||||
}
|
||||
|
||||
usage() {
|
||||
{ echo "usage: ruby-build [-v|--verbose] definition prefix"
|
||||
{ version
|
||||
echo "usage: ruby-build [-v|--verbose] definition prefix"
|
||||
echo " ruby-build --definitions"
|
||||
} >&2
|
||||
|
||||
|
@ -164,6 +171,10 @@ case "$1" in
|
|||
list_definitions
|
||||
exit 0
|
||||
;;
|
||||
"--version" )
|
||||
version
|
||||
exit 0
|
||||
;;
|
||||
"-v" | "--verbose" )
|
||||
VERBOSE=true
|
||||
shift
|
||||
|
|
Loading…
Reference in a new issue