diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-07 22:06:16 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-07 22:06:16 +0200 |
commit | 23ae4869772666fc7433ae878159277152cc3c33 (patch) | |
tree | dc882fa6af653b63cf93f4171b28fc6f193d21c1 /luaotfload-tool.lua | |
parent | 6b3ed4455d943fca0606a5e2a18e629c6e56a111 (diff) | |
download | luaotfload-23ae4869772666fc7433ae878159277152cc3c33.tar.gz |
rename mkfilelist to mkstatus
Diffstat (limited to 'luaotfload-tool.lua')
-rwxr-xr-x | luaotfload-tool.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/luaotfload-tool.lua b/luaotfload-tool.lua index 3010653..79f1c26 100755 --- a/luaotfload-tool.lua +++ b/luaotfload-tool.lua @@ -920,7 +920,7 @@ actions.list = function (job) end do - local hash_list = "luaotfload-files" + local status_file = "luaotfload-status" local out = function (...) logs.names_report (false, 0, "diagnose", ...) @@ -928,15 +928,15 @@ do local verify_files = function (errcnt) out ("Loading file hashes.") - local info = require (hash_list) + local info = require (status_file) local hashes = info.hashes local notes = info.notes if not hashes or #hashes == 0 then - out ("FAILED: cannot read checksums from %s.", hash_list) + out ("FAILED: cannot read checksums from %s.", status_file) return 1/0 elseif not notes then out ("FAILED: cannot read commit metadata from %s.", - hash_list) + status_file) return 1/0 end |