File tree Expand file tree Collapse file tree
roles/properties/rsync/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ git clone https://github.com/php/web-qa.git qaweb
2828git clone https://github.com/php/web-pres2.git talks
2929git clone https://github.com/php/php-sdk-binary-tools php-sdk-binary-tools
3030
31+ for i in talks; do
32+ cd " {{ rsync_mirrors_dir }}" /$i
33+ git clone https://github.com/php/presentations.git presentations
34+ done
35+
3136for i in docweb php-people-web qaweb php-main-web php-master-web php-news-web php-bugs-web php-gtk-web talks; do
3237 cd " {{ rsync_mirrors_dir }}" /$i
3338 git clone https://github.com/php/web-shared.git shared
Original file line number Diff line number Diff line change @@ -13,12 +13,17 @@ for i in phpweb; do
1313done
1414
1515# Websites needing the 'shared' module
16- for i in docweb php-people-web qaweb php-master-web php-news-web php-bugs-web php-gtk-web talks ; do
16+ for i in docweb php-people-web qaweb php-master-web php-news-web php-bugs-web php-gtk-web; do
1717 cd {{ rsync_mirrors_dir }}/$i
1818 $GIT_FETCH && $GIT_RESET ;
1919 (cd shared && $GIT_FETCH && $GIT_RESET )
2020done
2121
22+ # Talks needs the 'presentation' module
23+ cd {{ rsync_mirrors_dir }}/talks
24+ $GIT_FETCH && $GIT_RESET ;
25+ (cd presentations && $GIT_FETCH && $GIT_RESET )
26+
2227# For sites where master has been renamed to main, and need the 'shared' module
2328for i in php-main-web; do
2429 cd {{ rsync_mirrors_dir }}/$i
You can’t perform that action at this time.
0 commit comments