From 2359ca6904c1b268ace92ee0306539c779eff8e8 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 11 Oct 2007 12:23:20 -0400 Subject: [PATCH] pass parameters through to all commands probably mostly useful in the case where mr is using all one revision control system.. --- mr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mr b/mr index f2e4af5..6c59683 100755 --- a/mr +++ b/mr @@ -405,17 +405,17 @@ lib = \ } update = \ if [ -d .svn ]; then \ - svn update; \ + svn update "$@"; \ elif [ -d .git ]; then \ - git pull origin master; \ + git pull origin master "$@"; \ else \ error "unknown repo type"; \ fi status = \ if [ -d .svn ]; then \ - svn status; \ + svn status "$@"; \ elif [ -d .git ]; then \ - git status || true; \ + git status "$@" || true; \ else \ error "unknown repo type"; \ fi -- 2.39.2