We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b64738c commit 3c74da2Copy full SHA for 3c74da2
packages/utils/src/lib/execute-process.ts
@@ -153,7 +153,7 @@ export function executeProcess(cfg: ProcessConfig): Promise<ProcessResult> {
153
const logCommand = [command, ...(args || [])].join(' ');
154
ui().logger.log(
155
gray(
156
- `Executing command:\n${logCommand}\nIn working directory:\n${cfg.cwd}`,
+ `Executing command:\n${logCommand}\nIn working directory:\n${cfg.cwd ?? process.cwd()}`,
157
),
158
);
159
0 commit comments