mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
11 lines
244 B
Bash
Executable file
11 lines
244 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
BASEDIR=$(dirname $(readlink -f "$0"))
|
|
cd "$BASEDIR/.."
|
|
echo "=> Deploying in $(pwd)"
|
|
git fetch origin && git reset --hard origin/master
|
|
( cd doc/ && make )
|
|
( cd po/ && make && make install )
|
|
alembic upgrade head
|