mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-23 17:29:51 +02:00
Fix document missing on docify
This commit is contained in:
@ -50,8 +50,10 @@ local merge_files = function(data)
|
||||
cmd = "chmod 777 "..vfs.ospath(fpath)
|
||||
os.execute(cmd)
|
||||
else
|
||||
if not vfs.move(firstfile, fpath) then
|
||||
return error("Unable to move file")
|
||||
local cmd = "mv \""..vfs.ospath(firstfile).."\" \""..vfs.ospath(fpath).."\""
|
||||
os.execute(cmd)
|
||||
if not vfs.exists(fpath) then
|
||||
return error("Unable to move PDF file")
|
||||
end
|
||||
end
|
||||
-- move the thumb file to the cache folder
|
||||
|
Reference in New Issue
Block a user