v0.8.1 - Fixed a couple bugs involving the shell crashing and fetch. Added proper shell error handling.

This commit is contained in:
TheWahlolly
2025-04-27 20:00:06 +03:00
parent 614c9011cf
commit f478048976
8 changed files with 37 additions and 4 deletions
+4
View File
@@ -3,6 +3,10 @@ local fromFile, toFile = args[1], args[2]
args = nil
local fs = import("filesystem")
if not fromFile or not toFile then
shell.run("help mv")
return
end
if fromFile:sub(1, 1) ~= "/" then
fromFile = shell.workingDirectory .. fromFile
end