Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jfredett committed May 12, 2012
1 parent 5edb5f6 commit a8112ff
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/compile
Expand Up @@ -4,6 +4,9 @@ indent() {
sed -u 's/^/ /'
}

download() {
curl -L -s -S $@
}

ensure_env() {
echo "Ensuring suitable environment"
Expand All @@ -26,7 +29,7 @@ install_rbx() {
mkdir -p /tmp/rbx

echo "Downloading Rubinius" | indent
curl -L $RBX_URL/release-$RBX_VERSION | tar -zx$VERBOSE
download $RBX_URL/release-$RBX_VERSION | tar -zx$VERBOSE
mv rubinius-rubinius-$RBX_VERSION /tmp/rbx/rubinius

echo "Unpacking" | indent
Expand Down Expand Up @@ -66,6 +69,8 @@ install_gems() {
fi
}



VERBOSE=
RBX_URL=https://github.com/rubinius/rubinius/tarball
RBX_VERSION="1.2.4"
Expand Down

0 comments on commit a8112ff

Please sign in to comment.