mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-27 20:12:54 +08:00
14 lines
277 B
Bash
Executable File
14 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d /srv/web/docs ]
|
|
then
|
|
echo "/srv/web/docs missing"
|
|
cd /srv/web
|
|
git clone git://git.fedorahosted.org/docs/web.git docs
|
|
fi
|
|
|
|
|
|
cd /srv/web/docs
|
|
git reset -q --hard
|
|
git pull -q
|