summaryrefslogtreecommitdiff
path: root/update-luatex-font-database.lua
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2010-02-26 15:24:43 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2010-02-26 15:24:43 +0200
commit0b99d9ec4dd253721ca4dc29af6d95a65975da56 (patch)
tree80c22b38ea41cbb716cca24f9849204c354f0e4a /update-luatex-font-database.lua
parentfe0fde65f066d5e9a107a26eaec8fdbfe195f92e (diff)
downloadluaotfload-0b99d9ec4dd253721ca4dc29af6d95a65975da56.tar.gz
Implement a --force option
Diffstat (limited to 'update-luatex-font-database.lua')
-rw-r--r--update-luatex-font-database.lua9
1 files changed, 7 insertions, 2 deletions
diff --git a/update-luatex-font-database.lua b/update-luatex-font-database.lua
index 9a870f5..d067c56 100644
--- a/update-luatex-font-database.lua
+++ b/update-luatex-font-database.lua
@@ -30,6 +30,7 @@ Rebuild the LuaTeX font database.
Valid options:
-d --dbdir DIRECTORY writes the database in the specified directory
+ -f --force force re-indexing all fonts
-q --quiet don't output anything
-v --verbose=LEVEL be more verbose (print the searched directories)
-vv print the loaded fonts
@@ -59,6 +60,7 @@ end
local long_opts = {
dbdir = "d",
+ force = "f",
quiet = "q",
verbose = 1,
version = "V",
@@ -68,7 +70,7 @@ local long_opts = {
['no-fc-cache'] = 0,
}
-local short_opts = "d:qvVh"
+local short_opts = "d:fqvVh"
-- Function running fc-cache if needed.
-- The argument is nil for default, 0 for no fc-cache and 1 for fc-cache.
@@ -88,6 +90,7 @@ end
-- a temporary variable, containing the command line option concerning fc-cache
local run_fc_cache = nil
+local force_reload = nil
local function process_cmdline()
local opts, optind, optarg = alt_getopt.get_ordered_opts (arg, short_opts, long_opts)
@@ -109,6 +112,8 @@ local function process_cmdline()
os.exit(0)
elseif v == "d" then
luaotfload.fonts.directory = optarg [i]
+ elseif v == "f" then
+ force_reload = 1
elseif v == "fc-cache" then
run_fc_cache = 1
elseif v == "no-fc-cache" then
@@ -125,4 +130,4 @@ end
process_cmdline()
do_run_fc_cache(run_fc_cache)
-luaotfload.fonts.generate()
+luaotfload.fonts.reload(force_reload)