Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/logger.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ local fs = require("fs")

local date = os.date
local format = string.format
local stdout = _G.process.stdout.handle ---@diagnostic disable-line: undefined-field
local stdout = _G.process and _G.process.stdout.handle or require("deps.process").globalProcess().stdout.handle ---@diagnostic disable-line: undefined-field
local openSync, writeSync = fs.openSync, fs.writeSync

local RED = 31
Expand Down