sort the fs.mounts table

This commit is contained in:
Izaya 2023-10-08 11:42:49 +10:00
parent 35f3c6f89e
commit fe8107bf7f
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ function fs.mounts() -- -- table -- Returns a table containing the mount points
for k,v in pairs(fsmounts) do
rt[#rt+1] = k,v.address or "unknown"
end
table.sort(rt)
return rt
end