scripts: osmo_git_clone_url(): properly handle 'satellite/osmo-gmr'

Coverity job currently fails because it fails to fetch osmo-gmr.git.

Change-Id: I4d52dbf0f81332dc1856944a6a3c7376cb1e0638
Fixes: I17590d0b0b46274e2ceb007e20d7d1dc039f4e8d
This commit is contained in:
Vadim Yanitskiy 2022-10-01 15:12:36 +07:00
parent 6b3b90d55d
commit 4bb6385a22
1 changed files with 3 additions and 0 deletions

View File

@ -123,6 +123,9 @@ osmo_git_clone_url() {
rtl-sdr|osmo-fl2k|libosmo-dsp|libusrp)
echo "$OSMO_GIT_URL_GITEA"/sdr/"$1"
;;
osmo-gmr)
echo "$OSMO_GIT_URL_GITEA"/satellite/"$1"
;;
*)
echo "$OSMO_GIT_URL_GERRIT"/"$1"
;;