add: extra warning not to trust error message

The returned error message is ALWAYS true due to always being a string (`""`).
This commit is contained in:
carsakiller 2024-09-20 22:14:36 -04:00 committed by O1LER
parent 117ab90e16
commit b943ee6192

View File

@ -731,6 +731,11 @@ if not success then
else
-- do something with the directory
end
-- Be careful not to do this! This will ALWAYS be true!
if error_message then
-- ...
end
```
#### `FS.Remove(path: string) -> bool,string`