Remove deploy.sh

This commit is contained in:
Maciej Małecki 2014-04-04 03:04:17 +07:00
parent e549764a66
commit 063cb07777

View file

@ -1,15 +0,0 @@
#!/usr/bin/env bash
git remote | grep heroku
if [ $? -ne 0 ]; then
echo "Creating Heroku application..."
heroku apps:create
fi
if [ -n "$DATABASE_URL" ]; then
echo "Setting DATABASE_URL..."
heroku config:set DATABASE_URL="$DATABASE_URL"
fi
echo "Deploying..."
git push heroku master