Skip to content

Commit 4ab8727

Browse files
committed
rockspec: use git+https:// for git repository URL
GitHub is going to disable unencrypted Git protocol, so `git://` URLs will stop working soon (see [1]). [1]: https://github.blog/2021-09-01-improving-git-protocol-security-github/ Part of tarantool/tarantool#6587
1 parent 3f95c31 commit 4ab8727

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rockspecs/gis-1.0.0-1.rockspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package = 'gis'
22
version = '1.0.0-1'
33

44
source = {
5-
url = 'git://github.com/tarantool/gis.git';
5+
url = 'git+https://github.com/tarantool/gis.git';
66
tag = '1.0.0';
77
}
88

rockspecs/gis-scm-1.rockspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package = 'gis'
22
version = 'scm-1'
33

44
source = {
5-
url = 'git://github.com/tarantool/gis.git';
5+
url = 'git+https://github.com/tarantool/gis.git';
66
branch = 'master';
77
}
88

0 commit comments

Comments
 (0)