File size: 157 Bytes
96e86e5
 
 
 
1
2
3
4
5
export function buildCliCommandLabel(): string {
  const args = process.argv.slice(2);
  return args.length > 0 ? `penclip ${args.join(" ")}` : "penclip";
}