2013-09-03 20:49:27 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Get the parent directory of where this script is.
|
|
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
|
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
|
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
|
|
|
|
|
|
|
# Change into that directory
|
|
|
|
cd $DIR
|
|
|
|
|
2014-12-12 08:53:50 +00:00
|
|
|
# Add the git remote if it doesn't exist
|
|
|
|
git remote | grep heroku-www || {
|
|
|
|
git remote add heroku-www git@heroku.com:vagrantup-www.git
|
|
|
|
}
|
|
|
|
|
2013-09-03 20:49:27 +00:00
|
|
|
# Push the subtree (force)
|
|
|
|
git push heroku-www `git subtree split --prefix website/www master`:master --force
|