git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] guilt(1): fix path to git-sh-setup
@ 2008-07-16 23:23 Alex Chiang
  2008-07-17 10:02 ` Petr Baudis
  2008-07-17 14:53 ` Josef 'Jeff' Sipek
  0 siblings, 2 replies; 4+ messages in thread
From: Alex Chiang @ 2008-07-16 23:23 UTC (permalink / raw)
  To: jeffpc; +Cc: git

git is in the process of moving subcommands to /usr/libexec/git-core

This move breaks an assumption in guilt about the location of
git-sh-setup.

We can ask git for where it thinks its executables live.

Signed-off-by: Alex Chiang <achiang@hp.com>
---

diff --git a/guilt b/guilt
index 50414a4..ba4593a 100755
--- a/guilt
+++ b/guilt
@@ -23,7 +23,7 @@ esac
 # we change directories ourselves
 SUBDIRECTORY_OK=1
 
-. git-sh-setup
+. `git --exec-path`/git-sh-setup
 
 #
 # Git version check

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-07-17 14:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-16 23:23 [PATCH] guilt(1): fix path to git-sh-setup Alex Chiang
2008-07-17 10:02 ` Petr Baudis
2008-07-17 11:58   ` Johannes Schindelin
2008-07-17 14:53 ` Josef 'Jeff' Sipek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).