From b6d234977f1427c8ea42ca4e0e2ffb1891ad66a1 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sat, 23 Nov 2024 16:01:44 +0000 Subject: [PATCH] fix(lib): TypeErrors in shorthand constructor --- toolchainlib/src/init.luau | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/toolchainlib/src/init.luau b/toolchainlib/src/init.luau index d6db641..c5cd906 100644 --- a/toolchainlib/src/init.luau +++ b/toolchainlib/src/init.luau @@ -257,7 +257,7 @@ function installTool(tool: ToolId) ) chmod(linkPath, 0b111101101) - runTool(toolinstallPath) + runTool(toolInstallPath) end return setmetatable({ @@ -283,9 +283,9 @@ return setmetatable({ -- Use _G.PESDE_ROOT to get the install directory, then decode the -- pesde manifest to get the version of the tool dynamically - local manifestContents = pathfs.readFile(pathfs.Path.from(pesdeRoot):join("pesde.toml")) + local manifestContents = pathfs.readFile(pathfs.Path.from(pesdeRoot :: string):join("pesde.toml")) -- TODO: Create a pesde manifest type in toolchainlib, and use that here - local ok, manifest = pcall(serde.decode, "toml", manifestContents) + local ok, manifest = pcall(serde.decode, "toml" :: "toml", manifestContents) if not ok then stdio.ewrite(`{ERROR_PREFIX} Failed to decode bundled manifest. This is probably a bug.\n\n{manifest}`) process.exit(1) @@ -300,8 +300,10 @@ return setmetatable({ -- TODO: Use alias within pesde.toml in linker script alias = Option.None, repo = repo, - version = Option.Some(Semver.parse(if version ~= "" then version else manifestVersion()):unwrap()) :: Option, - } :: core.ToolId + version = Option.Some( + Semver.parse(if version ~= "" then version :: string else manifestVersion()):unwrap() + ) :: Option, + } :: ToolId ) if not ok then