From 6b78404821fa630b72c3155ae3c43eaffc872403 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 4 Dec 2024 22:52:19 +0100 Subject: [PATCH] Fix path separator --- reload.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reload.lua b/reload.lua index e174993..79d67ee 100644 --- a/reload.lua +++ b/reload.lua @@ -2,7 +2,7 @@ local CC_UTILS_DIR = "/cc-utilities" local function onResume(scriptArgs) if #scriptArgs > 0 then - scriptArgs[1] = CC_UTILS_DIR .. scriptArgs[1] + scriptArgs[1] = CC_UTILS_DIR .. "/" .. scriptArgs[1] shell.run(table.unpack(scriptArgs)) end end @@ -23,5 +23,5 @@ end shell.run("clone https://gitea.tofvesson.se/GabrielTofvesson/cc-utilities.git") -local nextVersion = require(CC_UTILS_DIR .. "reload") +local nextVersion = require(CC_UTILS_DIR .. "/reload") local _ = ((type(nextVersion) == "table" and type(nextVersion.onResume) == "function") and nextVersion.onResume or onResume)({...}) \ No newline at end of file