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

Make mr -i pass -i to the shell, to insure it knows it should be an interactive shell.
authorJoey Hess <joey@gnu.kitenet.net>
Fri, 25 Sep 2009 01:52:51 +0000 (21:52 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Fri, 25 Sep 2009 01:52:51 +0000 (21:52 -0400)
debian/changelog
mr

index 8b20025a3a1619f837e775303bc2eb6394612b90..b2a85ae2b926491770228cac073d3994ed623989 100644 (file)
@@ -1,3 +1,10 @@
+mr (0.44) UNRELEASED; urgency=low
+
+  * Make mr -i pass -i to the shell, to insure it knows it should be an
+    interactive shell.
+
+ -- Joey Hess <joeyh@debian.org>  Thu, 24 Sep 2009 21:52:27 -0400
+
 mr (0.43) unstable; urgency=low
 
   * Set User-Agent to "mr" when downloading the mrconfig file
diff --git a/mr b/mr
index 8de26f832aaaba70d8a6085ebdcd6a8b96211e8d..eb766d45b657975d857ae12a8c07aa895b18fe27 100755 (executable)
--- a/mr
+++ b/mr
@@ -713,7 +713,7 @@ sub record {
                if ($interactive) {
                        chdir($dir) unless $no_chdir;
                        print STDERR "mr: Starting interactive shell. Exit shell to continue.\n";
-                       system((getpwuid($<))[8]);
+                       system((getpwuid($<))[8], "-i");
                }
                push @failed, $dir;
                print "\n";