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 b813577 commit a0638f8Copy full SHA for a0638f8
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