summaryrefslogtreecommitdiffstats
path: root/scripts/create-pull-request
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-01-20 09:37:08 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 12:05:22 +0000
commitdd83bdb2f790f01a227f12dd3c42bb946f98a812 (patch)
treea99afd4603fb955433cc313268a9a243b6ba80c2 /scripts/create-pull-request
parent61f206195d8624380bb342e39992247157e24d63 (diff)
downloadpoky-dd83bdb2f790f01a227f12dd3c42bb946f98a812.tar.gz
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. (From OE-Core rev: a17ac420290c7e0debddec78b9540ae8726720dc) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/create-pull-request')
-rwxr-xr-xscripts/create-pull-request2
1 files changed, 1 insertions, 1 deletions
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
168 WEB_URL="http://git.pokylinux.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH" 168 WEB_URL="http://git.pokylinux.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH"
169 ;; 169 ;;
170 *git.openembedded.org*) 170 *git.openembedded.org*)
171 WEB_URL="http://cgit.openembedded.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH" 171 WEB_URL="http://cgit.openembedded.org/$REMOTE_REPO/log/?h=$BRANCH"
172 ;; 172 ;;
173 *github.com*) 173 *github.com*)
174 WEB_URL="https://github.com/$REMOTE_REPO/tree/$BRANCH" 174 WEB_URL="https://github.com/$REMOTE_REPO/tree/$BRANCH"