fix(filesystem): write_file call param position
This commit is contained in:
parent
c47b7a1962
commit
e0f61e1699
|
@ -15,7 +15,7 @@ end
|
||||||
local module = {}
|
local module = {}
|
||||||
|
|
||||||
function module.write(file_content: string, file_path: string)
|
function module.write(file_content: string, file_path: string)
|
||||||
local success, error_message = write_file(file_path, file_content)
|
local success, error_message = write_file(file_content, file_path)
|
||||||
|
|
||||||
if not success then
|
if not success then
|
||||||
log:error {
|
log:error {
|
||||||
|
|
Loading…
Reference in New Issue