diff options
author | Norbert Preining <norbert@preining.info> | 2022-03-23 03:01:06 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2022-03-23 03:01:06 +0000 |
commit | 8a64caefc9bb0d4afe66b6bf09cf8f283a5e386e (patch) | |
tree | c6574d20d0007892968e557a7984fbfb1a5e7664 /support/make4ht/formats | |
parent | 51119d11f3700a5be7da086dacad56dd219a5c90 (diff) |
CTAN sync 202203230301
Diffstat (limited to 'support/make4ht/formats')
-rw-r--r-- | support/make4ht/formats/make4ht-odt.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/make4ht/formats/make4ht-odt.lua b/support/make4ht/formats/make4ht-odt.lua index 01a587aff4..3f0ee3aaa8 100644 --- a/support/make4ht/formats/make4ht-odt.lua +++ b/support/make4ht/formats/make4ht-odt.lua @@ -73,10 +73,10 @@ function Odtfile:pack() lfs.chdir(self.archivelocation) -- make temporary mime type file self:make_mimetype() - mkutils.execute(zip_command .. " -q0X '" .. self.name .. "' " .. self.mimetypename) + mkutils.execute(zip_command .. ' -q0X "' .. self.name .. '" ' .. self.mimetypename) -- remove it, so the next command doesn't overwrite it self:remove_mimetype() - mkutils.execute(zip_command .." -r '" .. self.name .. "' *") + mkutils.execute(zip_command ..' -r "' .. self.name .. '" *') lfs.chdir(currentdir) mkutils.cp(self.archivelocation .. "/" .. self.name, self.name) mkutils.delete_dir(self.archivelocation) |