Spaces:
Paused
Paused
File size: 165 Bytes
8523e75 | 1 2 3 4 5 | export function buildCliCommandLabel(): string {
const args = process.argv.slice(2);
return args.length > 0 ? `paperclipai ${args.join(" ")}` : "paperclipai";
}
|