Commit f69655d2 by Sam Stephenson

ruby-build 20110906

parent 95e8b564
#!/usr/bin/env bash #!/usr/bin/env bash
RUBY_BUILD_VERSION="20110906"
set -E set -E
exec 3<&2 # preserve original stderr at fd 3 exec 3<&2 # preserve original stderr at fd 3
...@@ -128,8 +130,13 @@ use_gcc42_on_lion() { ...@@ -128,8 +130,13 @@ use_gcc42_on_lion() {
fi fi
} }
version() {
echo "ruby-build ${RUBY_BUILD_VERSION}"
}
usage() { usage() {
{ echo "usage: ruby-build [-v|--verbose] definition prefix" { version
echo "usage: ruby-build [-v|--verbose] definition prefix"
echo " ruby-build --definitions" echo " ruby-build --definitions"
} >&2 } >&2
...@@ -164,6 +171,10 @@ case "$1" in ...@@ -164,6 +171,10 @@ case "$1" in
list_definitions list_definitions
exit 0 exit 0
;; ;;
"--version" )
version
exit 0
;;
"-v" | "--verbose" ) "-v" | "--verbose" )
VERBOSE=true VERBOSE=true
shift shift
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment