aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-01-20 09:32:10 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-01-20 09:36:32 +1300
commit058274df30e9aa5cd2f4a3e5c0c1c69c707ad17b (patch)
treefdaa0a620c0cc3509a54249f4b95da8126baecd1
parenta7cb408dd784178197687a2129e936620bf6a0d3 (diff)
downloadopenembedded-core-contrib-paule/create-pull-request-cgit.tar.gz
create-pull-request: fix for OE cgit URL changepaule/create-pull-request-cgit
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 <paul.eggleton@linux.intel.com>
-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
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"