2015-06-30 19:52:11 +02:00
|
|
|
#!/usr/bin/env bash
|
2014-07-28 16:28:41 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# Push the subtree (force)
|
2015-07-29 01:38:59 +02:00
|
|
|
git push heroku `git subtree split --prefix website HEAD`:master --force
|