mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 07:00:35 +00:00
fix: add missing paren (#2)
This commit is contained in:
parent
e68f5d0928
commit
6082536350
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ if fs.isFile(package_directory .. "/default.project.json") then
|
|||
elseif fs.isFile(package_directory .. "/init.luau") then
|
||||
local sourcemap = { filePaths = { "init.luau" } }
|
||||
stdio.write(serde.encode("json", sourcemap, false))
|
||||
elseif fs.isFile(package_directory .. "/init.lua" then
|
||||
elseif fs.isFile(package_directory .. "/init.lua") then
|
||||
local sourcemap = { filePaths = { "init.lua" } }
|
||||
stdio.write(serde.encode("json", sourcemap, false))
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue