MCPcopy Index your code
hub / github.com/Waishnav/devspace / checkBashShell

Function checkBashShell

src/cli.ts:386–394  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

384}
385
386function checkBashShell(): string {
387 try {
388 const { shell, args } = getShellConfig();
389 return `${shell} ${args.join(" ")}`;
390 } catch (error) {
391 const message = error instanceof Error ? error.message : String(error);
392 return `unavailable (${message})`;
393 }
394}
395
396main(process.argv.slice(2)).catch((error) => {
397 console.error(error instanceof Error ? error.message : String(error));

Callers 1

runDoctorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected