mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-01 01:41:13 +08:00
14 lines
271 B
Bash
Executable File
14 lines
271 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 --hard
|
|
git pull
|