diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/fetch/git.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/luarocks/fetch/git.lua b/src/luarocks/fetch/git.lua index f2f17fb5..6305d781 100644 --- a/src/luarocks/fetch/git.lua +++ b/src/luarocks/fetch/git.lua | |||
@@ -39,12 +39,12 @@ function get_sources(rockspec, extract, dest_dir) | |||
39 | end | 39 | end |
40 | fs.change_dir(store_dir) | 40 | fs.change_dir(store_dir) |
41 | if not fs.execute(unpack(command)) then | 41 | if not fs.execute(unpack(command)) then |
42 | return nil, "Failed fetching files from GIT while cloning." | 42 | return nil, "Failed cloning git repository." |
43 | end | 43 | end |
44 | fs.change_dir(module) | 44 | fs.change_dir(module) |
45 | if checkout_command then | 45 | if checkout_command then |
46 | if not fs.execute(unpack(checkout_command)) then | 46 | if not fs.execute(unpack(checkout_command)) then |
47 | return nil, "Failed fetching files from GIT while getting tag/branch." | 47 | return nil, "Failed checking out tag/branch from git repository." |
48 | end | 48 | end |
49 | end | 49 | end |
50 | fs.delete(".git") | 50 | fs.delete(".git") |