Skip to content

Commit

Permalink
Update heroku log
Browse files Browse the repository at this point in the history
  • Loading branch information
mthenw committed Mar 6, 2014
1 parent d8f75df commit 3b96645
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,16 @@ Example usage:

$ git push heroku master

-----> Heroku receiving push
-----> Fetching custom build pack... done
-----> Fetching custom git buildpack... done
-----> Vert.x app detected

-----> Installing OpenJDK7u2..... done
-----> Installing Vert.x..... done

-----> Launching... done

This buildpack is based on [tomaslin/heroku-buildpack-vertx-jdk7](https://github.com/tomaslin/heroku-buildpack-vertx-jdk7).

## License

MIT
MIT
4 changes: 2 additions & 2 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if [ -d "$CACHE_DIR/.jdk7" ]; then
fi

if [ ! -d "$BUILD_DIR/.jdk7" ]; then
echo -n "-----> Installing OpenJDK7u2 build (to .jdk7)....."
echo -n "-----> Installing OpenJDK7u2....."
mkdir "$BUILD_DIR/.jdk7"
cd "$BUILD_DIR/.jdk7"
curl --max-time 180 --location $OPENJDK7_URL | tar xz
Expand All @@ -39,7 +39,7 @@ if [ -d "$CACHE_DIR/.vertx" ]; then
fi

if [ ! -d "$BUILD_DIR/.vertx" ]; then
echo -n "-----> Installing Vert.x build (to .vertx)....."
echo -n "-----> Installing Vert.x....."
curl --max-time 320 --location $VERTX_URL | tar xz
mv vert* .vertx
rm '.vertx/bin/vertx.bat'
Expand Down

0 comments on commit 3b96645

Please sign in to comment.