aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/luarocks/fetch/git.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/luarocks/fetch/git.lua b/src/luarocks/fetch/git.lua
index c7cc7008..0b33e76b 100644
--- a/src/luarocks/fetch/git.lua
+++ b/src/luarocks/fetch/git.lua
@@ -26,8 +26,9 @@ function get_sources(rockspec, extract, dest_dir)
26 local checkout_command 26 local checkout_command
27 local tag_or_branch = rockspec.source.tag or rockspec.source.branch 27 local tag_or_branch = rockspec.source.tag or rockspec.source.branch
28 if tag_or_branch then 28 if tag_or_branch then
29 -- ensure the branch is available 29 -- ensure the branch (or tag) is available
30 table.insert(command, 4, "--no-single-branch") 30 table.insert(command, 4, "--branch")
31 table.insert(command, 5, tag_or_branch)
31 checkout_command = {git_cmd, "checkout", tag_or_branch} 32 checkout_command = {git_cmd, "checkout", tag_or_branch}
32 end 33 end
33 local store_dir 34 local store_dir