Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/taro-rn-runner/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default async function build (_appPath: string, config: any): Promise<any
'--custom-log-reporter-path',
'@tarojs/rn-supporter/TerminalReporter'
].concat(cliParams), {
stdio: 'inherit'
stdio: 'inherit', shell: true
})
if (config.qr) {
previewDev({
Expand Down Expand Up @@ -115,7 +115,7 @@ export default async function build (_appPath: string, config: any): Promise<any
'--entry-file',
'index.js'
].concat(cliParams), {
stdio: 'inherit'
stdio: 'inherit', shell: true
})
if (config.qr) {
process.on('beforeExit', () => {
Expand Down
Loading