Skip to content

Commit

Permalink
Fix [object Object] output (#1597)
Browse files Browse the repository at this point in the history
Co-authored-by: Sam Chung <samc@seek.com.au>
  • Loading branch information
AaronMoat and samchungy committed Jun 25, 2024
1 parent 3aa30f6 commit af14927
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/funny-sloths-hang.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'skuba': patch
---

configure: Fix `[object Object]` output appearing during `skuba configure`
4 changes: 2 additions & 2 deletions src/cli/configure/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const configure = async () => {

log.newline();
log.plain(log.bold(packageManager.install));
log.plain(log.bold(packageManager, 'format'));
log.plain(log.bold(packageManager.command, 'format'));

log.newline();
process.exitCode = 1;
Expand All @@ -135,7 +135,7 @@ export const configure = async () => {
log.ok(log.bold('✔ All done! Try running:'));

log.newline();
log.plain(log.bold(packageManager, 'format'));
log.plain(log.bold(packageManager.command, 'format'));
}

log.newline();
Expand Down

0 comments on commit af14927

Please sign in to comment.