From patchwork Wed May 18 17:18:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [13/15] create-pull-request: add untested oe repository support Date: Wed, 18 May 2011 17:18:33 -0000 From: Darren Hart X-Patchwork-Id: 4371 Message-Id: <5eeab65f2719fe610b067a49377755132bdd802f.1305738598.git.dvhart@linux.intel.com> To: openembedded-core@lists.openembedded.org Signed-off-by: Darren Hart Acked-by: Otavio Salvador Cc: Otavio Salvador --- scripts/create-pull-request | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/scripts/create-pull-request b/scripts/create-pull-request index a9cf6f9..634a289 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -82,6 +82,10 @@ while getopts "b:chi:m:o:p:r:s:u:" OPT; do REMOTE_REPO=$(echo $REMOTE_URL | sed "s#.*/\(.*\)#\1#") REMOTE_URL=${REMOTE_URL/"ssh://git@"/"git://"} ;; + *ssh://git@git.openembedded.org*) + REMOTE_REPO=$(echo $REMOTE_URL | sed "s#.*/\(.*\)#\1#") + REMOTE_URL=${REMOTE_URL/"ssh://git@"/"git://"} + ;; git@github.com:*) REMOTE_REPO=$(echo $REMOTE_URL | sed 's#.*:\(.*\)\(\.git\)$#\1#') REMOTE_URL=${REMOTE_URL/"git@github.com:"/"git://github.com/"} @@ -111,6 +115,9 @@ case "$REMOTE_URL" in *git.pokylinux.org*) 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" + ;; *github.com*) WEB_URL="https://github.com/$REMOTE_REPO/tree/$BRANCH" ;;