diff --git a/update.sh b/update.sh index b49cb1f3..0e4adcf7 100755 --- a/update.sh +++ b/update.sh @@ -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'