mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-13 10:40:05 -04:00
scripts: script for publishing to the website
This commit is contained in:
parent
a68f6bf6de
commit
e9593bf49e
1 changed files with 12 additions and 0 deletions
12
scripts/website_push.sh
Executable file
12
scripts/website_push.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/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 `git subtree split --prefix website master`:master --force
|
||||
Loading…
Reference in a new issue