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 4dcbedb commit 2d12182Copy full SHA for 2d12182
packages/utils/src/lib/logger.ts
@@ -548,11 +548,12 @@ export function formatCommand(
548
const cwdPrefix = cwd ? `${ansis.blue(cwd)} ` : '';
549
const envString =
550
options?.env && Object.keys(options.env).length > 0
551
- ? Object.entries(options.env)
552
- .map(([key, value]) => {
+ ? [
+ ...Object.entries(options.env).map(([key, value]) => {
553
return ansis.gray(`${key}=${value}`);
554
- })
555
- .join(' ')
+ }),
+ ' ',
556
+ ].join(' ')
557
: '';
558
const statusColor =
559
status === 'pending'
0 commit comments