diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2017-04-15 12:33:38 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-16 07:41:24 -0700 |
commit | d82f8cbd3febbb84714bb3d78bcab5ddcc06ec4d (patch) | |
tree | d1f3b680980e62ba050198f5fe3e1c0b6a61821d /scripts/build.sh | |
parent | d6f2658268dd67a9e315a79170394fb4ce42e1cb (diff) | |
download | subsurface-d82f8cbd3febbb84714bb3d78bcab5ddcc06ec4d.tar.gz |
Change protocoll for any git clone from Github to https
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 5a95d319c..1e64b5156 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -94,7 +94,7 @@ if [[ $PLATFORM = Darwin || "$LIBGIT" < "24" ]] ; then if [[ $1 = local ]] ; then git clone $SRC/../libgit2 libgit2 else - git clone git://github.com/libgit2/libgit2 + git clone https://github.com/libgit2/libgit2.git fi fi cd libgit2 @@ -129,7 +129,7 @@ if [ ! -d libdivecomputer ] ; then if [[ $1 = local ]] ; then git clone $SRC/../libdivecomputer libdivecomputer else - git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc.git libdivecomputer + git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer fi fi cd libdivecomputer @@ -162,7 +162,7 @@ if [ $BUILDMARBLE = 1 ]; then if [[ $1 = local ]] ; then git clone $SRC/../marble-source marble-source else - git clone -b Subsurface-branch git://github.com/Subsurface-divelog/marble.git marble-source + git clone -b Subsurface-branch https://github.com/Subsurface-divelog/marble.git marble-source fi fi cd marble-source @@ -222,7 +222,7 @@ if [ "$BUILDGRANTLEE" = "1" ] ; then if [[ $1 = local ]] ; then git clone $SRC/../grantlee grantlee else - git clone git://github.com/steveire/grantlee.git + git clone https://github.com/steveire/grantlee.git fi fi cd grantlee |