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 de557c8 commit 64b0274Copy full SHA for 64b0274
generate-local.js
@@ -16,7 +16,7 @@ const exit = function exit() {
16
17
const runCmd = async (cmd, path) => {
18
console.log(chalk.underline(`Running '${chalk.green(cmd)}'`))
19
- const executedCmd = await execa.shell(cmd, { cwd: path })
+ const executedCmd = await execa(cmd, { cwd: path, shell: true })
20
21
if (executedCmd.failed) {
22
console.error(executedCmd.stderr)
0 commit comments