Skip to content

Commit b15a1cb

Browse files
authored
fix(create-twilio-function): handle rimraf failing (#400)
Received a report that creating a new project had failed for a developer and then the cleanup task didn't end. There was an issue with deleting the files that had been created which threw an unhandled error in the cleanUpAndExit function leading to the spinner never stopping. This adds a try/catch/finally around rimraf in cleanUpAndExit to ensure that it does indeed exit.
1 parent e95e726 commit b15a1cb

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

packages/create-twilio-function/src/create-twilio-function.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,16 @@ const successMessage = require('./create-twilio-function/success-message');
3131
async function cleanUpAndExit(projectDir, spinner, errorMessage) {
3232
spinner.fail(errorMessage);
3333
spinner.start('Cleaning up project directories and files');
34-
await rimraf(projectDir);
35-
spinner.stop().clear();
36-
process.exitCode = 1;
34+
try {
35+
await rimraf(projectDir);
36+
} catch (error) {
37+
spinner.fail(
38+
`There was an error cleaning up the project. Some files may still be present in ${projectDir}`
39+
);
40+
} finally {
41+
spinner.stop().clear();
42+
process.exitCode = 1;
43+
}
3744
}
3845

3946
async function performTaskWithSpinner(spinner, message, task) {

0 commit comments

Comments
 (0)