From: Paul Eggleton Date: Thu, 19 Jan 2017 20:37:08 +0000 (+1300) Subject: create-pull-request: fix for OE cgit URL change X-Git-Tag: uninative-1.5~638 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a17ac420290c7e0debddec78b9540ae8726720dc;p=openembedded-core.git create-pull-request: fix for OE cgit URL change The /cgit.cgi/ part is no longer valid in cgit URLs on git.openembedded.org as of recent infrastructure changes. Signed-off-by: Paul Eggleton Signed-off-by: Ross Burton --- diff --git a/scripts/create-pull-request b/scripts/create-pull-request index a88f35a4a3..e82858bc98 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -168,7 +168,7 @@ case "$REMOTE_URL" in WEB_URL="http://git.pokylinux.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH" ;; *git.openembedded.org*) - WEB_URL="http://cgit.openembedded.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH" + WEB_URL="http://cgit.openembedded.org/$REMOTE_REPO/log/?h=$BRANCH" ;; *github.com*) WEB_URL="https://github.com/$REMOTE_REPO/tree/$BRANCH"