From ad9ee6370dde937213dfd55dcaa1ebd2662d4e26 Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Sun, 22 Jan 2023 13:56:57 -0500 Subject: Better error message when not specifying a commit or branch. --- src/lpm.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lpm.lua b/src/lpm.lua index 5a95b90..d0f7122 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -815,6 +815,7 @@ end function Repository.__index(self, idx) return rawget(self, idx) or Repository[idx] end function Repository.new(hash) if not hash.remote then error("requires a remote") end + if not hash.commit and not hash.branch then error("requires either a branch or commit specifier") end if not hash.remote:find("^%w+:") and system.stat(hash.remote .. "/.git") then hash.remote = "file://" .. system.stat(hash.remote).abs_path end if not hash.remote:find("^https?:") and not hash.remote:find("^file:") then error("only repositories with http and file transports are supported (" .. hash.remote .. ")") end local self = setmetatable({ -- cgit v1.2.3