From 28cccf92fefcf21e0715902bfb154c2925c60b68 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 21 Oct 2007 02:09:56 -0400 Subject: [PATCH] assume any action with "update" in its name is like update, and should checkout instead if the directory isn't present not very happy with this, but it makes the quietupdate hack work.. --- mr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mr b/mr index 76c629c..433354b 100755 --- a/mr +++ b/mr @@ -488,7 +488,7 @@ sub action { #{{{ system("mkdir", "-p", $dir); } } - elsif ($action eq 'update') { + elsif ($action =~ /update/) { if (! -d $dir) { return action("checkout", $dir, $topdir, $subdir); } -- 2.39.5