Rename /halyde/shell to /halyde/scripts

The reason is because there will have to be a place to put scripts that
are not apps.
This commit is contained in:
WahPlus
2025-10-30 13:15:04 +02:00
parent c1c6a50b09
commit ae1652b1b9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
local filesystem = require("filesystem")
-- get a list of installed shells
local shellDir = filesystem.list("/halyde/shell/")
local shellDir = filesystem.list("/halyde/scripts/") -- HACK: /halyde/scripts features more than just shells!
local shells = {}
for i=1,#shellDir do
table.insert(shells,string.match(shellDir[i],"([^/]+)%.lua$"))