aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-01-26 18:27:27 +0100
committerHarald Welte <laforge@gnumonks.org>2019-01-26 18:29:01 +0100
commit2dfb2c6fa14c44fe458af504247088aa0dc90495 (patch)
tree7400e5b32b709231427941a26b7385b3c91228da /scripts
parent65353904bc9fcbe0a22f4bcca57cf02e3f8c42bc (diff)
osmocom-*-packages: clone via https:// not via unencrypted git://
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/osmocom-latest-packages.sh2
-rwxr-xr-xscripts/osmocom-nightly-packages.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/osmocom-latest-packages.sh b/scripts/osmocom-latest-packages.sh
index 62a6da0..38c6b33 100755
--- a/scripts/osmocom-latest-packages.sh
+++ b/scripts/osmocom-latest-packages.sh
@@ -49,7 +49,7 @@ checkout() {
if [ "$project" = "limesuite" ]; then
[ -d "$project" ] || git clone "https://github.com/myriadrf/LimeSuite" "$project"
else
- [ -d "$project" ] || git clone "git://git.osmocom.org/$project"
+ [ -d "$project" ] || git clone "https://git.osmocom.org/$project"
fi
cd "$project"
git fetch
diff --git a/scripts/osmocom-nightly-packages.sh b/scripts/osmocom-nightly-packages.sh
index 55c744c..e2bdd25 100755
--- a/scripts/osmocom-nightly-packages.sh
+++ b/scripts/osmocom-nightly-packages.sh
@@ -16,7 +16,7 @@ PROJ=network:osmocom:nightly
checkout() {
local name=$1
local branch=$2
- local url="git://git.osmocom.org"
+ local url="https://git.osmocom.org"
cd "$REPO"