sharieswebsite/tasks/hpublish
Yann Esposito (Yogsototh) 739e68ea34 Added nanoc stuff
2011-05-02 12:09:43 +02:00

20 lines
493 B
Bash
Executable file

#!/usr/bin/env zsh
if [[ $HOST = "YiMac.local" ]]; then
cd $HOME/Sites/webroot
git co master
(( $? == 0 )) || { exit 1 }
git pull
(( $? == 0 )) || { exit 1 }
# empty regen depencies cache because of a bug
# \rm -f ./tmp/*
./tasks/recompile
if git status | grep 'nothing to commit'>/dev/null 2>&1; then
else
git add .
git commit -m "regeneration"
fi
git push heroku master
else
ssh yimac ./Sites/webroot/tasks/hpublish
fi