# Run setup.sh in each project.
if [ "$#" -eq "0" ]; then
- for project in `find . -name .git -type d`; do
+ for path in `find . -name setup.sh -type f -executable`; do
# Skip this directory to prevent an infinite loop.
- [ "$project" = "./.git" ] && continue
+ [ "$path" = "./setup.sh" ] && continue
+
+ project=`echo "$path" | sed 's|/setup.sh$||'`
echo "running setup.sh in '$project'"
- ( cd "$project/.."; ./setup.sh > /dev/null )
+ ( cd "$project"; ./setup.sh > /dev/null )
done
# Create git repository if necessary and/or additional remotes and fetch them.
elif [ "$#" -ge "2" ]; then