-Subproject commit 529ca406a33b4f2845fe1d783ae2aeea035f446b
+Subproject commit ab04eaea4c1436a7acf8daa4e74642be88f05e25
-Subproject commit 318fc48efd4d1cb21c1b5e797374dad61a724401
+Subproject commit 5a901084ca3da2dda7e102ca6b094fe2e25f1788
-Subproject commit 5c691a3916c6d829597571f8861e40ee3ca78570
+Subproject commit 8dc74e6be9c843a8b378a8562e38c75f56e9e122
-Subproject commit cf86b36bcb249aa7f1e2a139feaaec6e4e4489b1
+Subproject commit 7d7e7236733cb204b631f21d996fbd66b6162361
-Subproject commit 8af4dac881dd587b4e750d92d4adf9c7c7d67106
+Subproject commit b8e3d045dcd6f535fb1a1ec32a2a819bba787f5c
-Subproject commit 2d987330f9dd013ab34f31d13f39081d54055429
+Subproject commit 13f7ebbfa3107e4b3ad67e6a8d08a373b8dd588f
-Subproject commit 3a2612c1e3deb44befcbfe288ba876a7ec3cfaac
+Subproject commit 7dfe5a9049fce10b47bc4deedab441f188d5020a
-Subproject commit 9c061cec03582bf813ed5d87b943d9ca18ead633
+Subproject commit 4240e3be39c568b4d3efaf6aecb997d83573a2e9
-Subproject commit 03ac9205b2b5e83aa951bd2fe14a2f743822690d
+Subproject commit 8da929a9b18a536b1f06c54b72bf3dde0863dc02
-Subproject commit 9dd922996b77d07d7e8f3d519cc48e179e139caa
+Subproject commit fd78b208374f7322dc738059b4849877fcc6a1a8
#!/bin/bash
-cd /var/opt/app/fosdem_submission/html/stands-website
+parent="/var/opt/app/fosdem_submission/html/stands-website"
+
+cd "$parent"
git pull origin master
-git submodule init
-git submodule update
+#git submodule init
+#git submodule update
+
+#git pull --recurse-submodules
+
+
+for d in $(find content/stands -maxdepth 1 -type d); do
+
+ basename=$(basename "$d")
+ if [ "$basename" != "stands" ]; then
+ cd "$d"
+ git branch > /dev/null
+ echo "$d"
+ if [ "$?" == "0" ]; then
+ git pull origin $(git branch | tail -1 | sed 's/*//' | awk '{print $1}')
+ fi
+ cd "$parent"
+ fi
-git pull --recurse-submodules
+done
hugo