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 28c6937 commit e8a3ed8Copy full SHA for e8a3ed8
tasks/git-clean-build.mjs
@@ -80,11 +80,11 @@ try {
80
repoRoot,
81
'packages/create-cedar-rsc-app',
82
)
83
- process.chdir(createCedarRscAppPath)
84
- await $`yarn install`
+ await $({ cwd: createCedarRscAppPath })`yarn install`
85
86
console.log('All tasks completed successfully!')
87
console.log(`Returning to original directory: ${originalCwd}`)
+ process.chdir(originalCwd)
88
} catch (error) {
89
console.error('Error during clean-build process:', error)
90
process.exit(1)
0 commit comments