#!/usr/bin/env bash echo 'updating all components' cd .. for d in */; do cd "$d" FILE=build if [ -d $FILE ]; then echo 'updating componenent ' $d git pull fi cd .. done cd installation ./build.sh