aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2020-02-12 15:33:27 -0300
committerHisham Muhammad <hisham@gobolinux.org>2020-02-12 15:33:27 -0300
commita7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9 (patch)
treefabfdd88208c253f73ab80cf64324637efc2c9d4
parentec4c5afe2cb70a5ca3e19a5e75d3561316727385 (diff)
downloadluarocks-a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9.tar.gz
luarocks-a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9.tar.bz2
luarocks-a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9.zip
remove debugging
-rw-r--r--src/luarocks/fetch.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/luarocks/fetch.lua b/src/luarocks/fetch.lua
index 0fc3f506..464061d1 100644
--- a/src/luarocks/fetch.lua
+++ b/src/luarocks/fetch.lua
@@ -26,7 +26,6 @@ function fetch.fetch_caching(url)
26 26
27 local cachefile = dir.path(cache_dir, filename) 27 local cachefile = dir.path(cache_dir, filename)
28 if cfg.aggressive_cache and (not name:match("^manifest")) and fs.exists(cachefile) then 28 if cfg.aggressive_cache and (not name:match("^manifest")) and fs.exists(cachefile) then
29 print("FAST TRACK!", cfg.aggressive_cache)
30 return cachefile, nil, nil, true 29 return cachefile, nil, nil, true
31 end 30 end
32 31