We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99f195 commit 05d5e60Copy full SHA for 05d5e60
packages/launchpad/src/commands/doctor.ts
@@ -7,6 +7,7 @@ const command: Command = {
7
async run() {
8
try {
9
const report = await runDoctorChecks()
10
+ // eslint-disable-next-line no-console
11
console.log(formatDoctorReport(report))
12
return report.overall === 'healthy' ? 0 : 1
13
}
packages/launchpad/src/commands/scan-global-paths.ts
@@ -8,6 +8,7 @@ const cmd: Command = {
const globalDir = argv[0]
const paths = await scanGlobalPaths(globalDir)
console.log(paths.join(' '))
return 0
14
0 commit comments