git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: jaysoffian+git@gmail.com
To: git@vger.kernel.org
Cc: Jay Soffian <jaysoffian@gmail.com>
Subject: [PATCH] git-web--browse: fix misplaced quote in init_browser_path()
Date: Mon, 11 Feb 2008 10:57:34 -0500	[thread overview]
Message-ID: <1202745454-10038-1-git-send-email-jaysoffian+git@gmail.com> (raw)

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

                 reply	other threads:[~2008-02-11 15:59 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1202745454-10038-1-git-send-email-jaysoffian+git@gmail.com \
    --to=jaysoffian+git@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=jaysoffian@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).