X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=bin%2Fgit-update-all.sh;h=45ef0fa617e9189b86c920b7516032878c67d176;hb=fe1eb400053afc56eba1acc7320f5eeabe3a7681;hp=b2ae8f8026660b481aeda5d925933ccab5b2e487;hpb=4091679bbc1ed03620e31006399e78608c66586b;p=config%2Fdotfiles.git diff --git a/bin/git-update-all.sh b/bin/git-update-all.sh index b2ae8f8..45ef0fa 100755 --- a/bin/git-update-all.sh +++ b/bin/git-update-all.sh @@ -1,6 +1,8 @@ #!/bin/sh # Run git-update.sh for all git repositories in this directory. +# +# All arguments are passed to git-update.sh. -find . -name .git -type d -exec git-update.sh {} \; | less +find . -name .git -type d -exec git-update.sh "$@" {} \; | less