diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2007-11-08 22:47:36 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-08 15:54:58 -0800 |
commit | b5e960b108b48b3ebd92a3c1b22b13a9edd127dc (patch) | |
tree | 127bd23fb366cd0b7d3a2f870ae4ba409cefa2c2 /git-request-pull.sh | |
parent | d50a4bc4e91f03cecc337e5e95dc4c0e0a4054f0 (diff) | |
download | git-b5e960b108b48b3ebd92a3c1b22b13a9edd127dc.tar.gz |
Avoid a few unportable, needlessly nested "...`...".
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-request-pull.sh')
-rwxr-xr-x | git-request-pull.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh index a992430679..95ad66630f 100755 --- a/git-request-pull.sh +++ b/git-request-pull.sh @@ -24,13 +24,13 @@ headrev=`git rev-parse --verify "$head"^0` || exit merge_base=`git merge-base $baserev $headrev` || die "fatal: No commits in common between $base and $head" -url="`get_remote_url "$url"`" -branch=`git peek-remote "$url" \ +url=$(get_remote_url "$url") +branch=$(git peek-remote "$url" \ | sed -n -e "/^$headrev refs.heads./{ s/^.* refs.heads.// p q - }"` + }") if [ -z "$branch" ]; then echo "warn: No branch of $url is at:" >&2 git log --max-count=1 --pretty='format:warn: %h: %s' $headrev >&2 |