mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:20:43 +00:00
fix(cli): satisfy raw progress lint
This commit is contained in:
@@ -66,7 +66,7 @@ export function createCliProgress(options: ProgressOptions): ProgressReporter {
|
||||
|
||||
const delayMs = typeof options.delayMs === "number" ? options.delayMs : DEFAULT_DELAY_MS;
|
||||
const canOsc = isTty && supportsOscProgress(process.env, isTty);
|
||||
const stdinIsRaw = process.stdin.isRaw === true;
|
||||
const stdinIsRaw = process.stdin.isRaw;
|
||||
const allowSpinner = shouldUseInteractiveProgressSpinner({
|
||||
fallback: options.fallback,
|
||||
streamIsTty: isTty,
|
||||
|
||||
Reference in New Issue
Block a user