From 989347e0a86be548ddcba8652e328db9a6a88b04 Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Tue, 14 Apr 2015 05:49:29 -0400 Subject: Add git+https support. --- src/luarocks/fetch/git_https.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/luarocks/fetch/git_https.lua diff --git a/src/luarocks/fetch/git_https.lua b/src/luarocks/fetch/git_https.lua new file mode 100644 index 00000000..67f8ad6c --- /dev/null +++ b/src/luarocks/fetch/git_https.lua @@ -0,0 +1,7 @@ +--- Fetch back-end for retrieving sources from Git repositories +-- that use https:// transport. For example, for fetching a repository +-- that requires the following command line: +-- `git clone https://example.com/foo.git` +-- you can use this in the rockspec: +-- source = { url = "git+https://example.com/foo.git" } +return require "luarocks.fetch.git_http" -- cgit v1.2.3-55-g6feb