X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=6e5a69ae0b71c3fe3801fff8e8df89140be76e2d;hb=a3e64d7edcef3412cc64056510aacb046a2cc4a7;hp=95aad803ea58989dd6d2b59b5a0a6063a124ac84;hpb=b803b471349c4622d5960f7ce2db830a163bb4d3;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index 95aad80..6e5a69a 100755 --- a/setup.sh +++ b/setup.sh @@ -7,7 +7,7 @@ # Creates a new git repository in $1, adds a new remote named $2 and fetches # the master on $3. If the git repository already exists a new remote $2 for # $3 is added. If the remote already exists nothing happens. -function git_remote_init_update() { +git_remote_init_update() { # Make sure the requested directory exists. mkdir -p "$1" # Go to the target directory. @@ -28,9 +28,10 @@ function git_remote_init_update() { echo "Adding remote '$2' to '$1'." git remote add -t master "$2" "$3/$1" git fetch "$2" > /dev/null - # Remove the remote if the fetch was unsuccessful. + # Remove the remote and abort if the fetch was unsuccessful. if [ "$?" -ne "0" ]; then git remote rm "$2" + exit 1 fi # Pushing to the remote pushes only the master branch in remotes named @@ -56,12 +57,14 @@ function git_remote_init_update() { # 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 - [ -d "$project" ] && (echo "running setup.sh in '$project'"; - cd "$project/.."; ./setup.sh > /dev/null) + project=`echo "$path" | sed 's|/setup.sh$||'` + + echo "running setup.sh in '$project'" + ( cd "$project"; ./setup.sh > /dev/null ) done # Create git repository if necessary and/or additional remotes and fetch them. elif [ "$#" -ge "2" ]; then