]> 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:

Avoid using abs_path to determine canonical repo path, as that fails when the repo...
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 10 Dec 2009 22:29:50 +0000 (17:29 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 10 Dec 2009 22:30:14 +0000 (17:30 -0500)
debian/changelog
mr

index 4d07a624ce9961b4e6cb508b5252915af05d5bbc..8ba415951f056ce74bf598c25179cd1f6251ea13 100644 (file)
@@ -1,3 +1,10 @@
+mr (0.46) unstable; urgency=low
+
+  * Avoid using abs_path to determine canonical repo path, as that fails
+    when the repo has not yet been checked out.
+
+ -- Joey Hess <joeyh@debian.org>  Thu, 10 Dec 2009 17:28:26 -0500
+
 mr (0.45) unstable; urgency=low
 
   * Fix pod error. Closes: #558012
diff --git a/mr b/mr
index b5d5c118b8d4ef9c9c470196e64f5214c330a3c4..1a57570f9953dff1c3e5ec59b201daeed904ee36 100755 (executable)
--- a/mr
+++ b/mr
@@ -791,7 +791,9 @@ sub repodir {
        my $repo=shift;
        my $topdir=$repo->{topdir};
        my $subdir=$repo->{subdir};
-       return abs_path(($subdir =~/^\//) ? $subdir : $topdir.$subdir);
+       my $ret=($subdir =~/^\//) ? $subdir : $topdir.$subdir;
+       $ret=~s/\/\.$//;
+       return $ret;
 }
 
 # figure out which repos to act on