diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2020-02-12 15:33:27 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2020-02-12 15:33:27 -0300 |
commit | a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9 (patch) | |
tree | fabfdd88208c253f73ab80cf64324637efc2c9d4 | |
parent | ec4c5afe2cb70a5ca3e19a5e75d3561316727385 (diff) | |
download | luarocks-a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9.tar.gz luarocks-a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9.tar.bz2 luarocks-a7eba5be6c85d35bcca7c5cb4f9f923a0fa2a4d9.zip |
remove debugging
-rw-r--r-- | src/luarocks/fetch.lua | 1 |
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 | ||