From 6d0e777e6808ff14338cdee57a570d08cd2d7b3e Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Sun, 18 Feb 2024 21:40:25 -0500 Subject: [PATCH] updated copyright and removed coordinator from list mentioning config.lua --- ccmsi.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ccmsi.lua b/ccmsi.lua index 9b9a98c..327018d 100644 --- a/ccmsi.lua +++ b/ccmsi.lua @@ -1,7 +1,7 @@ --[[ CC-MEK-SCADA Installer Utility -Copyright (c) 2023 Mikayla Fischler +Copyright (c) 2023 - 2024 Mikayla Fischler Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, @@ -18,7 +18,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. local function println(message) print(tostring(message)) end local function print(message) term.write(tostring(message)) end -local CCMSI_VERSION = "v1.12a" +local CCMSI_VERSION = "v1.12b" local install_dir = "/.install-cache" local manifest_path = "https://mikaylafischler.github.io/cc-mek-scada/manifests/" @@ -345,7 +345,7 @@ elseif mode == "install" or mode == "update" then if mode == "install" then println("Installing " .. app .. " files...") elseif mode == "update" then - if app == "coordinator" or app == "pocket" then println("Updating " .. app .. " files... (keeping old config.lua)") + if app == "pocket" then println("Updating " .. app .. " files... (keeping old config.lua)") else println("Updating " .. app .. " files...") end end white()