git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-web--browse: fix misplaced quote in init_browser_path()
@ 2008-02-11 15:57 jaysoffian+git
  0 siblings, 0 replies; only message in thread
From: jaysoffian+git @ 2008-02-11 15:57 UTC (permalink / raw)
  To: git; +Cc: Jay Soffian

git "config browser.$1.path" should be git config "browser.$1.path"

Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
---
 git-web--browse.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-web--browse.sh b/git-web--browse.sh
index 5179709..282dd41 100755
--- a/git-web--browse.sh
+++ b/git-web--browse.sh
@@ -34,7 +34,7 @@ valid_tool() {
 }
 
 init_browser_path() {
-	browser_path=$(git "config browser.$1.path")
+	browser_path=$(git config "browser.$1.path")
 	test -z "$browser_path" && browser_path="$1"
 }
 
-- 
1.5.4.1.1230.gf7885

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-02-11 15:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-11 15:57 [PATCH] git-web--browse: fix misplaced quote in init_browser_path() jaysoffian+git

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).