From: Joey Hess Date: Mon, 4 Feb 2008 18:37:27 +0000 (-0500) Subject: * Fix tests in git-svn include file to use MR_REPO. Closes: #463941 X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/87b4279f2cecac8e322b3db02ca7c8f0bae28d6a?ds=sidebyside * Fix tests in git-svn include file to use MR_REPO. Closes: #463941 --- diff --git a/debian/changelog b/debian/changelog index 72a7fde..d8597a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mr (0.23) UNRELEASED; urgency=low + + * Fix tests in git-svn include file to use MR_REPO. Closes: #463941 + + -- Joey Hess Mon, 04 Feb 2008 13:36:22 -0500 + mr (0.22) unstable; urgency=low * Update bzr registration code to work with current version of bzr, diff --git a/lib/git-svn b/lib/git-svn index 9457547..5f42f54 100644 --- a/lib/git-svn +++ b/lib/git-svn @@ -17,11 +17,11 @@ git_svn_log = git svn log "$@" git_test = test -d "$MR_REPO"/.git && - test -z "`git config --get svn-remote.svn.url`" + test -z "$(GIT_CONFIG="$MR_REPO"/config git config --get svn-remote.svn.url)" git_svn_test = test -d "$MR_REPO"/.git && - test -n "`git config --get svn-remote.svn.url`" + test -n "$(GIT_CONFIG="$MR_REPO"/config git config --get svn-remote.svn.url)" git_svn_register = url="`LC_ALL=C git config --get svn-remote.svn.url`" || true