two bugfixes

Annoying dangers of testing in one fork and committing upstream
(where it isn't used yet).
This commit is contained in:
Kartik K. Agaram 2023-09-09 09:09:14 -07:00
parent bcd7f6b598
commit 0016d668bc
1 changed files with 3 additions and 2 deletions

View File

@ -444,7 +444,7 @@ function App.disable_tests()
return ok, err
end
end
App.read =
App.read_file =
function(path)
if not is_absolute_path(path) then
return --[[status]] false, 'Please use an unambiguous absolute path.'
@ -467,7 +467,7 @@ function App.disable_tests()
return ok, err
end
end
App.write =
App.write_file =
function(filename, contents)
if not is_absolute_path(path) then
return --[[status]] false, 'Please use an unambiguous absolute path.'
@ -478,6 +478,7 @@ function App.disable_tests()
end
f:write(contents)
f:close()
return --[[status]] true
end
App.files = nativefs.getDirectoryItems
App.mkdir = nativefs.createDirectory