From 13b14656304a818687b98a34cb1f60301399b22c Mon Sep 17 00:00:00 2001 From: PentagonLP Date: Tue, 1 Jun 2021 11:15:02 +0200 Subject: [PATCH] Bugfix: Removed a print in the wrong place --- ccptinstall.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ccptinstall.lua b/ccptinstall.lua index 8bfa725..c8429de 100644 --- a/ccptinstall.lua +++ b/ccptinstall.lua @@ -1,3 +1,10 @@ +--[[ + ComputerCraft Package Tool Installer + Author: PentagonLP + Version: 1.0 + Lines of Code: 161; Characters: 5541 +]] + -- Read arguments args = {...} @@ -142,7 +149,6 @@ elseif args[1]=="remove" then fs.delete("/ccpt") fs.delete("/.ccpt") shell.setCompletionFunction("ccpt", nil) - print("[Installer] Removing 'ccpt' from startup...") if file_exists("startup") and startsWith(startup,"-- ccpt: Seach for updates\nshell.run(\"ccpt\",\"startup\")") then print("[Installer] Removing 'ccpt' from startup...") startup = readFile("startup","")