]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
bin/git-update-all.sh: Pass arguments to git-update.sh.
authorSimon Ruderich <simon@ruderich.org>
Tue, 30 Nov 2010 09:10:54 +0000 (10:10 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 30 Nov 2010 09:10:54 +0000 (10:10 +0100)
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