summaryrefslogtreecommitdiffstats
path: root/lib/modelfunctions.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/modelfunctions.lua')
-rw-r--r--lib/modelfunctions.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/modelfunctions.lua b/lib/modelfunctions.lua
index d7be73d..c27965d 100644
--- a/lib/modelfunctions.lua
+++ b/lib/modelfunctions.lua
@@ -201,8 +201,7 @@ function write_file_with_audit (self, path, str)
pre(self, path, tmpfile)
end
- if fs.dirname(path) and not posix.stat(fs.dirname(path)) then fs.create_directory(fs.dirname(path)) end
- os.rename (tmpfile, path)
+ fs.move_file(tmpfile, path)
if (type(post) == "string" and #post) then
os.execute(post)