forget-cancellare-vecchi-toot/tools/post-receive.example

34 lines
819 B
Bash
Executable File

#!/bin/sh
export GIT_DIR=$(git rev-parse --absolute-git-dir)
while read old new refname; do
branch=$(git rev-parse --abbrev-ref=strict ${refname})
if [[ $branch == "deploy" ]]; then
cd "$HOME/forget"
(
unset GIT_DIR
unset GIT_WORK_TREE
git checkout deploy
git reset --hard upstream/deploy
)
(
source venv/bin/activate
env -u GIT_DIR -u GIT_WORK_TREE pip install -r requirements.txt
yarn
FLASK_APP='forget.py' flask db upgrade
if [[ $(git diff --name-only ${old}..${new} dodo.py) == 'dodo.py' ]]
then
rm -rf static
mkdir static
fi
doit
)
systemctl --user restart forget
fi
done