X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=cf7eb54fe5cf5afe3ab45b405754f0202d000909;hb=8348ecd5e6759f9551fac0431a45c3bdffc36956;hp=e16c7772e4574314874e7f4c78739ccc81639892;hpb=706ac962872911abe4aa40e2774f34d68325fc27;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index e16c777..cf7eb54 100755 --- a/setup.sh +++ b/setup.sh @@ -28,5 +28,10 @@ for path in */setup.sh; do project=`echo "$path" | sed 's|/setup.sh$||'` echo "running setup.sh in '$project'" - ( cd "$project"; ./setup.sh >/dev/null ) + if ( cd "$project"; ./setup.sh >/dev/null ); then + : + else + echo "$project/setup.sh failed" >&2 + exit 1 + fi done