From 0c2b64beb8d16c45757312c58df58ea45ae6bb00 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Sun, 19 May 2024 14:19:06 +0200 Subject: [PATCH] fix: move simple-harvester.lua in old directory --- install.lua | 3 ++- simple-harvester.lua => old/simple-harvester.lua | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename simple-harvester.lua => old/simple-harvester.lua (100%) diff --git a/install.lua b/install.lua index 3c4e5fc..18d102b 100644 --- a/install.lua +++ b/install.lua @@ -1,6 +1,6 @@ local LIST_FILES = { 'miner.lua', - 'simple-harvester.lua', + 'old/simple-harvester.lua', 'inferium-upgrader.lua' }; @@ -19,6 +19,7 @@ local REPO_PREFIX = 'https://git.trapcloud.fr/guillaumearm/minecraft-cc-tools/ra local prepareDirs = function() + fs.makeDir('/old') fs.makeDir('/libs') fs.makeDir('/config') end diff --git a/simple-harvester.lua b/old/simple-harvester.lua similarity index 100% rename from simple-harvester.lua rename to old/simple-harvester.lua