summaryrefslogtreecommitdiff
path: root/scripts/build-v1.sh
diff options
context:
space:
mode:
authorAJ <scisco@users.noreply.github.com>2014-07-17 15:57:26 -0400
committerAJ <scisco@users.noreply.github.com>2014-07-17 15:57:26 -0400
commit086585c95574596765f9ce15bef0ff539b2cd6e5 (patch)
treee7584d93b1e1680231f0f98810fa990b0f7d47e3 /scripts/build-v1.sh
parentea87493f9a91a0d853ea6dd5f6e4a25cb9d536db (diff)
parent54d4b6cc127a786506cbf4b0abc0ee8e8cc55c56 (diff)
Merge pull request #16 from developmentseed/improvements
Making jekyll-hook compatible with Ubuntu 14.0
Diffstat (limited to 'scripts/build-v1.sh')
-rwxr-xr-xscripts/build-v1.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/scripts/build-v1.sh b/scripts/build-v1.sh
deleted file mode 100755
index 0e85e39..0000000
--- a/scripts/build-v1.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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
-
-# Check to see if repo exists. If not, git clone it
-if [ ! -d $source ]; then
- git clone $giturl $source
-fi
-
-# Git checkout appropriate branch, pull latest code
-cd $source
-git checkout $branch
-git pull origin $branch
-cd -
-
-# Run jekyll
-cd $source
-jekyll build --source $source --destination $build
-cd -