Update "update.sh" to run any available repo-specific "update.sh" scripts before generating README.md

This commit is contained in:
Tianon Gravi
2014-09-09 15:36:59 -06:00
parent 1ec235ca00
commit 1820821a02
+3
View File
@@ -10,6 +10,9 @@ fi
repos=( "${repos[@]%/}" )
for repo in "${repos[@]}"; do
if [ -x "$repo/update.sh" ]; then
( set -x; "$repo/update.sh" )
fi
case "$repo" in
perl)
gitRepo='https://github.com/Perl/docker-perl'