summaryrefslogtreecommitdiff
path: root/luaotfload-tool.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-07-07 22:06:16 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-07-07 22:06:16 +0200
commit23ae4869772666fc7433ae878159277152cc3c33 (patch)
treedc882fa6af653b63cf93f4171b28fc6f193d21c1 /luaotfload-tool.lua
parent6b3ed4455d943fca0606a5e2a18e629c6e56a111 (diff)
downloadluaotfload-23ae4869772666fc7433ae878159277152cc3c33.tar.gz
rename mkfilelist to mkstatus
Diffstat (limited to 'luaotfload-tool.lua')
-rwxr-xr-xluaotfload-tool.lua8
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