diff options
author | Ignacio Burgueño <iburgueno@gmail.com> | 2015-04-14 11:19:19 -0300 |
---|---|---|
committer | Ignacio Burgueño <iburgueno@gmail.com> | 2015-04-14 11:19:19 -0300 |
commit | 46f8ad6b6ef99a9b8ea5d2a081cf41f6789aabbb (patch) | |
tree | 6df776e902d9c9c80fa0c44c73d8748cd557a400 /src | |
parent | 0fe8556ced63d714e0cd371a8511c8dadce7874e (diff) | |
parent | 989347e0a86be548ddcba8652e328db9a6a88b04 (diff) | |
download | luarocks-46f8ad6b6ef99a9b8ea5d2a081cf41f6789aabbb.tar.gz luarocks-46f8ad6b6ef99a9b8ea5d2a081cf41f6789aabbb.tar.bz2 luarocks-46f8ad6b6ef99a9b8ea5d2a081cf41f6789aabbb.zip |
Merge pull request #350 from jszakmeister/add-git-https-support
Add git+https support.
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/fetch/git_https.lua | 7 |
1 files changed, 7 insertions, 0 deletions
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 @@ | |||
1 | --- Fetch back-end for retrieving sources from Git repositories | ||
2 | -- that use https:// transport. For example, for fetching a repository | ||
3 | -- that requires the following command line: | ||
4 | -- `git clone https://example.com/foo.git` | ||
5 | -- you can use this in the rockspec: | ||
6 | -- source = { url = "git+https://example.com/foo.git" } | ||
7 | return require "luarocks.fetch.git_http" | ||