Skip to content

Commit

Permalink
Fix(crwa): Exit 0 after Quit install
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed Jan 20, 2024
1 parent 4b541be commit 228dfa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-redwood-app/src/create-redwood-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ async function executeCompatibilityCheck(templateDir) {
if (response['override-engine-error'] === 'Quit install') {
recordErrorViaTelemetry('User quit after engine check error')
await shutdownTelemetry()
process.exit(1)
process.exit(0)
}
} catch (error) {
recordErrorViaTelemetry('User cancelled install at engine check error')
Expand Down

0 comments on commit 228dfa3

Please sign in to comment.