From: Michael Opdenacker Date: Thu, 10 Aug 2023 14:25:06 +0000 (+0200) Subject: scripts/create-pull-request: update URLs to git repositories X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~139 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=47b88d143c2fc61ce0e03b7eb3a9dbcffadbf5b1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/create-pull-request: update URLs to git repositories Also remove the git.pokylinux.org URL, no longer used. Signed-off-by: Michael Opdenacker Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 2f91a355b03..885105fab3d 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -149,13 +149,10 @@ fi WEB_URL="" case "$REMOTE_URL" in *git.yoctoproject.org*) - WEB_URL="http://git.yoctoproject.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH" - ;; - *git.pokylinux.org*) - WEB_URL="http://git.pokylinux.org/cgit.cgi/$REMOTE_REPO/log/?h=$BRANCH" + WEB_URL="https://git.yoctoproject.org/$REMOTE_REPO/log/?h=$BRANCH" ;; *git.openembedded.org*) - WEB_URL="http://cgit.openembedded.org/$REMOTE_REPO/log/?h=$BRANCH" + WEB_URL="https://git.openembedded.org/$REMOTE_REPO/log/?h=$BRANCH" ;; *github.com*) WEB_URL="https://github.com/$REMOTE_REPO/tree/$BRANCH"