shithub: hugo

Download patch

ref: 9436f0b0c31d2df49647e301ab3d6e2053b356b8
parent: f8fd5796bb266352e61d897430c7659ce5d6565c
author: Bjørn Erik Pedersen <[email protected]>
date: Sat Sep 23 06:11:20 EDT 2017

Allow the pull-docs script to pull other than master

--- a/pull-docs.sh
+++ b/pull-docs.sh
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+HUGO_DOCS_BRANCH="${HUGO_DOCS_BRANCH-master}"
+
 # We may extend this to also push changes in the other direction, but this is the most important step.
-git subtree pull --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
+git subtree pull --prefix=docs/ https://github.com/gohugoio/hugoDocs.git ${HUGO_DOCS_BRANCH} --squash