mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-12 15:23:39 -05:00
12 lines
360 B
Bash
Executable file
12 lines
360 B
Bash
Executable file
#!/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
|
|
|
|
# Push the subtree (force)
|
|
git push heroku-docs `git subtree split --prefix website/docs master`:master --force
|