From 189b0e98a4ad0f1aafb061a2e3322e333c352102 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 30 Nov 2010 10:10:54 +0100 Subject: [PATCH] bin/git-update-all.sh: Pass arguments to git-update.sh. --- bin/git-update-all.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.45.2