summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-03-14 22:29:34 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-03-14 22:29:34 -0400
commit5a5547251f0a29bb41832e240f9f15cb5cf002bc (patch)
tree1a961bb0fdec8b8e17659213785b2ab3f79ca9d8
parentee71849692690e9cd81852434f5babb5d63dc8bb (diff)
post-receive: adjust PATH with .profile if necessary
-rwxr-xr-xbin/post-receive.githook4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/post-receive.githook b/bin/post-receive.githook
index 53de38c..ddd74c3 100755
--- a/bin/post-receive.githook
+++ b/bin/post-receive.githook
@@ -4,6 +4,10 @@ whoami
export LANG=en_US.UTF-8
unset GIT_DIR
+if ! type scss; then
+ . ~/.profile
+fi
+
if ! git merge-base --is-ancestor master pre-generated; then
dir="$(mktemp --tmpdir -d www-generate.XXXXXXXXXX)"
git clone "$PWD" "$dir"