aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2020-04-13 20:05:45 -0300
committerHisham Muhammad <hisham@gobolinux.org>2020-04-13 20:05:45 -0300
commite9156c8ab6bc8b7f4c0e9d2e706131bc89bec57e (patch)
tree2de94ce4e446645ac5954ce9913fb5f4266b9ec0
parent77e21bd9c4bcad52dc93589abd7e0ae801e4ffe3 (diff)
downloadluarocks-e9156c8ab6bc8b7f4c0e9d2e706131bc89bec57e.tar.gz
luarocks-e9156c8ab6bc8b7f4c0e9d2e706131bc89bec57e.tar.bz2
luarocks-e9156c8ab6bc8b7f4c0e9d2e706131bc89bec57e.zip
fs.lua: be more resilient on errors getting the unixtime
-rw-r--r--src/luarocks/fs/lua.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/fs/lua.lua b/src/luarocks/fs/lua.lua
index b6314a44..e431adfd 100644
--- a/src/luarocks/fs/lua.lua
+++ b/src/luarocks/fs/lua.lua
@@ -807,7 +807,7 @@ local function http_request(url, filename, http, cache)
807 local timestamp = read_timestamp(filename..".timestamp") 807 local timestamp = read_timestamp(filename..".timestamp")
808 if status or timestamp then 808 if status or timestamp then
809 local unixtime = read_timestamp(filename..".unixtime") 809 local unixtime = read_timestamp(filename..".unixtime")
810 if unixtime then 810 if tonumber(unixtime) then
811 local diff = os.time() - tonumber(unixtime) 811 local diff = os.time() - tonumber(unixtime)
812 if status then 812 if status then
813 if diff < cfg.cache_fail_timeout then 813 if diff < cfg.cache_fail_timeout then