Added commas to the packages that will be installed list

This commit is contained in:
2026-03-27 19:25:23 +02:00
parent 2d6dbe41a1
commit c5b330ac9d
+1 -1
View File
@@ -310,7 +310,7 @@ if command == "install" then
print(("\27[93m%d dependencies pulled in."):format(dependencyCounter)) print(("\27[93m%d dependencies pulled in."):format(dependencyCounter))
end end
print("Packages that will be installed:") print("Packages that will be installed:")
print(table.concat(packages)) print(table.concat(packages, ", "))
local answer = terminal.read({prefix = "\nContinue? [Y/n] "}) local answer = terminal.read({prefix = "\nContinue? [Y/n] "})
if answer:lower() == "n" then if answer:lower() == "n" then
print("Exiting.") print("Exiting.")