diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2017-01-20 09:37:08 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:04:01 +0000 |
commit | a17ac420290c7e0debddec78b9540ae8726720dc (patch) | |
tree | d1d7ca04be73d8b46c76d1ca693174e8046c3f36 /scripts | |
parent | 370c6ba16c72bb52e80da098a5812ed1e09ac659 (diff) | |
download | openembedded-core-a17ac420290c7e0debddec78b9540ae8726720dc.tar.gz openembedded-core-a17ac420290c7e0debddec78b9540ae8726720dc.tar.bz2 openembedded-core-a17ac420290c7e0debddec78b9540ae8726720dc.zip |
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 <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create-pull-request | 2 |
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" |