#187 installer bugfix

This commit is contained in:
Mikayla Fischler
2023-03-04 14:21:42 -05:00
parent d494abe8af
commit 57ccb73efe
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,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 = "v0.9j"
local CCMSI_VERSION = "v0.9k"
local install_dir = "/.install-cache"
local repo_path = "http://raw.githubusercontent.com/MikaylaFischler/cc-mek-scada/"
@@ -162,10 +162,10 @@ if mode == "check" then
term.setTextColor(colors.yellow)
println("failed to load local installation information")
term.setTextColor(colors.white)
else
local_manifest.versions.installer = CCMSI_VERSION
end
local_manifest.versions.installer = CCMSI_VERSION
-- list all versions
for key, value in pairs(manifest.versions) do
term.setTextColor(colors.purple)