summaryrefslogtreecommitdiff
path: root/scripts/publish.sh
blob: 82e728beeb6c455e7dda21a405cb0dd9f49fab83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
set -e

# This script is meant to be run automatically
# as part of the jekyll-hook application.
# https://github.com/developmentseed/jekyll-hook

repo=$1
branch=$2
owner=$3
giturl=$4
source=$5
build=$6

# Set the path of the hosted site
site="/usr/share/nginx/www/$repo"

# Remove old site files, move new ones in place
rm -rf $site
mv $build $site