Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hg_ssh.lua « fetch « luarocks « src « luarocks - github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c365fabebf8c27afbf95c773474cff1c4cdfcc3 (plain)
1
2
3
4
5
6
7
8

--- Fetch back-end for retrieving sources from hg repositories
-- that use ssh:// transport. For example, for fetching a repository
-- that requires the following command line:
-- `hg clone ssh://example.com/foo`
-- you can use this in the rockspec:
-- source = { url = "hg+ssh://example.com/foo" }
return require "luarocks.fetch.hg_http"