diff options
author | Alexander Turenko <alexander.turenko@tarantool.org> | 2021-11-09 11:39:43 +0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2021-11-09 11:07:10 -0300 |
commit | 211c2a5d897db328a7776ddc11111a2051d5b7f3 (patch) | |
tree | 153e2e722249e43d90a0dad0ecaef5f29a984e5e | |
parent | 7c6e1b013caec0602ca4796df3b1d7253a2dd258 (diff) | |
download | luafilesystem-211c2a5d897db328a7776ddc11111a2051d5b7f3.tar.gz luafilesystem-211c2a5d897db328a7776ddc11111a2051d5b7f3.tar.bz2 luafilesystem-211c2a5d897db328a7776ddc11111a2051d5b7f3.zip |
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/
-rw-r--r-- | luafilesystem-scm-1.rockspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luafilesystem-scm-1.rockspec b/luafilesystem-scm-1.rockspec index 71cf19b..c948965 100644 --- a/luafilesystem-scm-1.rockspec +++ b/luafilesystem-scm-1.rockspec | |||
@@ -1,7 +1,7 @@ | |||
1 | package = "luafilesystem" | 1 | package = "luafilesystem" |
2 | version = "scm-1" | 2 | version = "scm-1" |
3 | source = { | 3 | source = { |
4 | url = "git://github.com/keplerproject/luafilesystem" | 4 | url = "git+https://github.com/keplerproject/luafilesystem" |
5 | } | 5 | } |
6 | description = { | 6 | description = { |
7 | summary = "File System Library for the Lua Programming Language", | 7 | summary = "File System Library for the Lua Programming Language", |