Commit f69655d2 by Sam Stephenson

ruby-build 20110906

parent 95e8b564
#!/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
......
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