Skip to content

Commit 2d298e0

Browse files
committed
talks: Update the presentations module as well
1 parent 4426f15 commit 2d298e0

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

roles/properties/rsync/templates/git-clone

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ git clone https://github.com/php/web-qa.git qaweb
2828
git clone https://github.com/php/web-pres2.git talks
2929
git 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+
3136
for 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

roles/properties/rsync/templates/update-mirrors

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@ for i in phpweb; do
1313
done
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)
2020
done
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
2328
for i in php-main-web; do
2429
cd {{ rsync_mirrors_dir }}/$i

0 commit comments

Comments
 (0)