mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-06-27 23:57:02 +08:00
11 lines
347 B
Bash
11 lines
347 B
Bash
#!/bin/bash -xe
|
|
cd /tmp
|
|
git clone --branch {% if env == "staging" %}staging{% else %}master{% endif %} https://pagure.io/fedora-web/websites.git
|
|
cd websites
|
|
git rev-parse HEAD
|
|
bash ./build-prod.sh /output
|
|
curl -O https://codeblock.fedorapeople.org/atomic-htaccess.py
|
|
mkdir -p out build
|
|
python atomic-htaccess.py
|
|
cp -r out/. /output/getfedora.org/
|