]> git.madduck.net Git - code/myrepos.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

* Fix output of "mr config DEFAULT lib".
authorJoey Hess <joey@kodama.kitenet.net>
Fri, 19 Oct 2007 20:14:58 +0000 (16:14 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 19 Oct 2007 20:14:58 +0000 (16:14 -0400)
debian/changelog
mr

index b4ebe503979530a50a1b189374010214da62115b..b94dc8bb678caf0a445a43b5fe85fb252c2be1b7 100644 (file)
@@ -4,8 +4,9 @@ mr (0.5) UNRELEASED; urgency=low
     thing can be accomplished in a mrconfig by skipping a repo unless
     it exists, and printing a reminder on update. See the mrconfig file
     for an example.
+  * Fix output of "mr config DEFAULT lib".
 
- -- Joey Hess <joeyh@debian.org>  Fri, 19 Oct 2007 15:53:15 -0400
+ -- Joey Hess <joeyh@debian.org>  Fri, 19 Oct 2007 16:14:21 -0400
 
 mr (0.4) unstable; urgency=low
 
diff --git a/mr b/mr
index a5a9131c548d30255314bb04910c035323adb129..4630f06898eb23fcdbd49dde3cc78ffeaf70863e 100755 (executable)
--- a/mr
+++ b/mr
@@ -22,7 +22,7 @@ B<mr> [options] log
 
 B<mr> [options] register [repository]
 
-B<mr> [options] config section [parameter=[value] ...]
+B<mr> [options] config section ["parameter=[value]" ...]
 
 B<mr> [options] action [params ...]
 
@@ -350,6 +350,7 @@ elsif ($action eq 'config') {
                                    exists $config{$topdir}{$section}{$_}) {
                                        print $config{$topdir}{$section}{$_}."\n";
                                        $found=1;
+                                       last if $section eq 'DEFAULT';
                                }
                        }
                        if (! $found) {