Skip to content

Commit

Permalink
Don't show an error when CTRL + C is pressed.
Browse files Browse the repository at this point in the history
  • Loading branch information
dompuiu committed Aug 19, 2024
1 parent d38d727 commit 164e83c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/alloyBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ const getInteractiveBuildCommand = () =>
console.error(
"Prompt couldn't be rendered in the current environment",
);
} else {
} else if (error.name !== "ExitPromptError") {
console.error("An error occurred: ", error);
}
});
Expand Down

0 comments on commit 164e83c

Please sign in to comment.