Skip to content

Commit

Permalink
made default server type server.groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaslin committed May 1, 2012
1 parent 46b7603 commit 37abf6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/compile
Expand Up @@ -58,5 +58,5 @@ cp -r .vertx $CACHE_DIR/.vertx
# Warn if no Procfile is present
if [ ! -f Procfile ]; then
echo "-----> No Procfile found. Will use the following default process: "
echo " vertx run server.js"
echo " vertx run server.groovy"
fi
2 changes: 1 addition & 1 deletion bin/detect
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# bin/use <build-dir>

if [ -f $1/server.js ]; then
if [ -f $1/server.groovy ]; then
echo "Vert.x" && exit 0
else
echo "no" && exit 1
Expand Down
2 changes: 1 addition & 1 deletion bin/release
Expand Up @@ -15,6 +15,6 @@ EOF
if [ ! -f $BUILD_DIR/Procfile ]; then
cat <<EOF
default_process_types:
web: vertx run server.js
web: vertx run server.groovy
EOF
fi

0 comments on commit 37abf6b

Please sign in to comment.