From e9156c8ab6bc8b7f4c0e9d2e706131bc89bec57e Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Mon, 13 Apr 2020 20:05:45 -0300 Subject: fs.lua: be more resilient on errors getting the unixtime --- src/luarocks/fs/lua.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) local timestamp = read_timestamp(filename..".timestamp") if status or timestamp then local unixtime = read_timestamp(filename..".unixtime") - if unixtime then + if tonumber(unixtime) then local diff = os.time() - tonumber(unixtime) if status then if diff < cfg.cache_fail_timeout then -- cgit v1.2.3-55-g6feb