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 174c967 commit 90ff596Copy full SHA for 90ff596
Examples/_MyFirstFunction/create_and_deploy_function.sh
@@ -31,11 +31,12 @@ check_prerequisites() {
31
These values are read from '~/.aws/credentials'.
32
"
33
34
- read -r -p "Are you ready to create your first Lambda function in Swift? [y/n] " continue
35
- if [[ ! $continue =~ ^[Yy]$ ]]; then
36
- echo "OK, try again later when you feel ready"
37
- exit 1
38
- fi
+ printf "Are you ready to create your first Lambda function in Swift? [y/n] "
+ read -r continue
+ case $continue in
+ [Yy]*) ;;
+ *) echo "OK, try again later when you feel ready"; exit 1 ;;
39
+ esac
40
}
41
42
create_lambda_execution_role() {
0 commit comments