Skip to content
Merged
Show file tree
Hide file tree
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 packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openrouter/spawn",
"version": "0.26.5",
"version": "0.26.6",
"type": "module",
"bin": {
"spawn": "cli.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const COMPACT_NAME_WIDTH = 20;
const COMPACT_COUNT_WIDTH = 10;
const COMPACT_READY_WIDTH = 10;

export function getTerminalWidth(): number {
function getTerminalWidth(): number {
return process.stdout.columns || 80;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/shared/orchestrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const DOCKER_CONTAINER_NAME = "spawn-agent";
export const DOCKER_REGISTRY = "ghcr.io/openrouterteam";

/** Wrap a command to run inside the Docker container instead of the host. */
export function makeDockerExec(cmd: string): string {
function makeDockerExec(cmd: string): string {
if (!cmd || cmd.length === 0) {
throw new Error("makeDockerExec: command must be non-empty");
}
Expand Down
Loading