You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The solution is to change git:// to git+https:// in the rockspec file. I would open a PR for this, but I'm not sure your versioning process or which files to change. So I just wanted to leave the note here.
For anyone who sees this issue and is looking for a fix that doesn't require waiting for every luarocks package to update their rockspec files, here is a workaround, courtesy of stackoverflow:
GitHub deprecated usage of
git://
(unencrypted Git protocol) on March 15th, 2022, so LuaRocks will fail to install any package including asource.url
starting withgit://
. According to the LuaRocks documentation, the correct syntax for referencinghttps://
URLs isgit+https://
.The solution is to change
git://
togit+https://
in the rockspec file. I would open a PR for this, but I'm not sure your versioning process or which files to change. So I just wanted to leave the note here.For anyone who sees this issue and is looking for a fix that doesn't require waiting for every luarocks package to update their rockspec files, here is a workaround, courtesy of stackoverflow:
The text was updated successfully, but these errors were encountered: