]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - bin/git-update-all.sh
bin/git-update-all.sh: Pass arguments to git-update.sh.
[config/dotfiles.git] / bin / git-update-all.sh
index b2ae8f8026660b481aeda5d925933ccab5b2e487..45ef0fa617e9189b86c920b7516032878c67d176 100755 (executable)
@@ -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