summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/editor.ts
diff options
context:
space:
mode:
authorcornmander <[email protected]>2025-06-24 02:41:40 -0400
committerGitHub <[email protected]>2025-06-24 06:41:40 +0000
commita2ed4266aaee69932a8254ccf611c95ad584a71a (patch)
tree7ac46260fa20a1456e8cdf39ec836536380af140 /packages/core/src/utils/editor.ts
parent324715ee8bb6a7c7277692f2e08fc46f750b5181 (diff)
Update editor.ts (#1371)
Diffstat (limited to 'packages/core/src/utils/editor.ts')
-rw-r--r--packages/core/src/utils/editor.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/core/src/utils/editor.ts b/packages/core/src/utils/editor.ts
index e7a87ac1..36533e2c 100644
--- a/packages/core/src/utils/editor.ts
+++ b/packages/core/src/utils/editor.ts
@@ -145,6 +145,7 @@ export async function openDiff(
return new Promise((resolve, reject) => {
const childProcess = spawn(diffCommand.command, diffCommand.args, {
stdio: 'inherit',
+ shell: true,
});
childProcess.on('close', (code) => {