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 f27e05f commit 453ef34Copy full SHA for 453ef34
utils/scripts/tag.mjs
@@ -8,7 +8,7 @@
8
*/
9
10
import { Command } from 'commander';
11
-import { execa } from 'execa';
+import { execa, execaCommand } from 'execa';
12
import fs from 'fs';
13
import { githubBranch, githubRelease, lernaChangelog } from '@zendeskgarden/scripts';
14
import ora from 'ora';
@@ -46,7 +46,7 @@ const changelog = async (tag, spinner) => {
46
47
await write(fd, markdown);
48
spinner.stop();
49
- await execa.command(`${editor.stdout} ${path}`, { stdio: 'inherit' });
+ await execaCommand(`${editor.stdout} ${path}`, { stdio: 'inherit' });
50
spinner.start();
51
52
const readFile = util.promisify(fs.readFile);
0 commit comments