Skip to content

Commit 8e08689

Browse files
jaysoffian+git@gmail.comgitster
authored andcommitted
git-web--browse: fix misplaced quote in init_browser_path()
git "config browser.$1.path" should be git config "browser.$1.path" Signed-off-by: Jay Soffian <jaysoffian@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 193ad4f commit 8e08689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-web--browse.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ valid_tool() {
3434
}
3535

3636
init_browser_path() {
37-
browser_path=$(git "config browser.$1.path")
37+
browser_path=$(git config "browser.$1.path")
3838
test -z "$browser_path" && browser_path="$1"
3939
}
4040

0 commit comments

Comments
 (0)