We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c85701a commit d998129Copy full SHA for d998129
apps/x86_64-darwin/apply
@@ -191,8 +191,8 @@ confirm_details() {
191
_prompt "${YELLOW}Is this correct? yes/no: ${NC}" choice
192
193
case "$choice" in
194
- [Nn] ) _print "${RED}Exiting script.${NC}" && exit 1;;
195
- [Yy] ) _print "${GREEN}Continuing...${NC}";;
+ [Nn] | [Nn][Oo] ) _print "${RED}Exiting script.${NC}" && exit 1;;
+ [Yy] | [Yy][Ee][Ss] ) _print "${GREEN}Continuing...${NC}";;
196
* ) _print "${RED}Invalid option. Exiting script.${NC}" && exit 1;;
197
esac
198
}
0 commit comments