Skip to content

Commit 05d5e60

Browse files
committed
chore: wip
1 parent b99f195 commit 05d5e60

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/launchpad/src/commands/doctor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const command: Command = {
77
async run() {
88
try {
99
const report = await runDoctorChecks()
10+
// eslint-disable-next-line no-console
1011
console.log(formatDoctorReport(report))
1112
return report.overall === 'healthy' ? 0 : 1
1213
}

packages/launchpad/src/commands/scan-global-paths.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const cmd: Command = {
88
const globalDir = argv[0]
99
try {
1010
const paths = await scanGlobalPaths(globalDir)
11+
// eslint-disable-next-line no-console
1112
console.log(paths.join(' '))
1213
return 0
1314
}

0 commit comments

Comments
 (0)