v1.8.4 - Fixed a bug with mkdir and with /mnt not being generated on install.

This commit is contained in:
TheWahlolly
2025-05-31 17:51:19 +03:00
parent 6fbd5a7d35
commit eb9716ba68
4 changed files with 6 additions and 5 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
local agcfg = { local agcfg = {
["halyde"] = { ["halyde"] = {
["maindir"] = "", ["maindir"] = "",
["version"] = "1.8.3", ["version"] = "1.8.4",
["description"] = "A universal, customizable and feature-packed operating system for OpenComputers.", ["description"] = "A universal, customizable and feature-packed operating system for OpenComputers.",
["directories"] = { ["directories"] = {
"halyde/apps", "halyde/apps",
@@ -9,7 +9,8 @@ local agcfg = {
"halyde/config/generate", "halyde/config/generate",
"halyde/core", "halyde/core",
"halyde/lib", "halyde/lib",
"home" "home",
"mnt"
}, },
["files"] = { ["files"] = {
"init.lua", "init.lua",
+1 -1
View File
@@ -4,7 +4,7 @@ Ahalyde/core/
Ahalyde/config/generate/ Ahalyde/config/generate/
Ahalyde/apps/helpdb/ Ahalyde/apps/helpdb/
Ahalyde/apps/ Ahalyde/apps/
V1.8.3 V1.8.4
Ainit.lua Ainit.lua
Ahalyde/apps/helpdb/cat.txt Ahalyde/apps/helpdb/cat.txt
Ahalyde/apps/helpdb/cd.txt Ahalyde/apps/helpdb/cd.txt
+1 -1
View File
@@ -11,4 +11,4 @@ end
if fs.exists(directory) then if fs.exists(directory) then
print("\27[91mAn object already exists at the specified path.") print("\27[91mAn object already exists at the specified path.")
end end
fs.makeDirectory(file) fs.makeDirectory(directory)
+1 -1
View File
@@ -1,7 +1,7 @@
local loadfile = ... local loadfile = ...
local filesystem = loadfile("/halyde/lib/filesystem.lua")(loadfile) local filesystem = loadfile("/halyde/lib/filesystem.lua")(loadfile)
_G._OSVERSION = "Halyde 1.8.3" _G._OSVERSION = "Halyde 1.8.4"
_G._OSLOGO = "" _G._OSLOGO = ""
local handle, tmpdata = filesystem.open("/halyde/config/oslogo.ans", "r"), nil local handle, tmpdata = filesystem.open("/halyde/config/oslogo.ans", "r"), nil
repeat repeat