X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/e5c87b4489b0881b7b9903733478f0d11ac96ab7..365e665fe5c8d116c0b7766fd32ee916b0f7a60f:/luatz/tzcache.lua diff --git a/luatz/tzcache.lua b/luatz/tzcache.lua index de62d79..25a664d 100644 --- a/luatz/tzcache.lua +++ b/luatz/tzcache.lua @@ -1,12 +1,14 @@ local read_tzfile = require "luatz.tzfile".read_tzfile +local base_zoneinfo_path = "/usr/share/zoneinfo/" +local local_zoneinfo_path = "/etc/localtime" local tz_cache = { } local function name_to_zoneinfo_path ( name ) if name then - return "/usr/share/zoneinfo/" .. name + return base_zoneinfo_path .. name else - return "/etc/localtime" + return local_zoneinfo_path end end