From 1abaad4d8051f6caa85edd374bbbcd9cf915eddb Mon Sep 17 00:00:00 2001 From: Rushikesh Tote <31135699+rushitote@users.noreply.github.com> Date: Wed, 8 Feb 2023 15:21:37 +0530 Subject: [PATCH 1/2] Revert "fix: rockspec url protocol (#146)" This reverts commit e9ebbacd6881431964a545a80bbf3680ee6ed99d. --- .github/luarocks-template.rockspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/luarocks-template.rockspec b/.github/luarocks-template.rockspec index 67ce7be..928bac6 100644 --- a/.github/luarocks-template.rockspec +++ b/.github/luarocks-template.rockspec @@ -1,6 +1,6 @@ package = "casbin" source = { - url = "https://github.com/casbin/lua-casbin", + url = "git://github.com/casbin/lua-casbin", } description = { summary = "An authorization library that supports access control models like ACL, RBAC, ABAC in Lua (OpenResty)", From 756952ce8915917576db6b99735963f46e5ae732 Mon Sep 17 00:00:00 2001 From: Rushikesh Tote Date: Wed, 8 Feb 2023 17:18:16 +0530 Subject: [PATCH 2/2] fix: rockspec source url --- .github/luarocks-template.rockspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/luarocks-template.rockspec b/.github/luarocks-template.rockspec index 928bac6..c028eb6 100644 --- a/.github/luarocks-template.rockspec +++ b/.github/luarocks-template.rockspec @@ -1,6 +1,6 @@ package = "casbin" source = { - url = "git://github.com/casbin/lua-casbin", + url = "git+https://github.com/casbin/lua-casbin.git", } description = { summary = "An authorization library that supports access control models like ACL, RBAC, ABAC in Lua (OpenResty)",