Skip to content

Commit

Permalink
yaaaas
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreBytee committed Dec 7, 2021
1 parent fc045dc commit c610164
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TypeWriter/Actions/Compile/Init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ return function(Args)
FS.mkdirSync(RuntimeLocation .. "TypeWriter/Out")

Logger.Info("Writing to '" .. CompiledData.PackageInfo.Name .. ".dua'!")
FS.writeFileSync(RuntimeLocation .. "TypeWriter/Out/" .. CompiledData.PackageInfo.Name .. ".dua", Json.stringify(CompiledData, nil, 4))
FS.writeFileSync(RuntimeLocation .. "TypeWriter/Out/" .. CompiledData.PackageInfo.Name .. ".dua", Json.stringify(CompiledData, {indent = true}))
Logger.Info("Done writing")
end
2 changes: 1 addition & 1 deletion TypeWriter/Actions/Execute/Init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ return function()
FS.mkdirSync(RuntimeLocation .. "TypeWriter/Out")

Logger.Info("Writing to '" .. CompiledData.PackageInfo.Name .. ".dua'!")
FS.writeFileSync(RuntimeLocation .. "TypeWriter/Out/" .. CompiledData.PackageInfo.Name .. ".dua", Json.stringify(CompiledData, nil, 4))
FS.writeFileSync(RuntimeLocation .. "TypeWriter/Out/" .. CompiledData.PackageInfo.Name .. ".dua", Json.stringify(CompiledData, {indent = true}))

Logger.Info("Starting process with id: " .. RuntimeSession)

Expand Down

0 comments on commit c610164

Please sign in to comment.