Added commas to the packages that will be installed list
This commit is contained in:
+1
-1
@@ -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.")
|
||||||
|
|||||||
Reference in New Issue
Block a user