From a19bb65e92c044d302f1b5aa30c81ce32c376b87 Mon Sep 17 00:00:00 2001 From: kdnakt Date: Sat, 13 Jul 2019 00:47:54 +0900 Subject: [PATCH] docs: add missing backslash to bash commands --- HOWTO.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HOWTO.md b/HOWTO.md index aca0e2e4a..26b9802de 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -53,7 +53,7 @@ packaged template that can be readily deployed to CloudFormation. $ aws cloudformation package \ --template-file /path_to_template/template.yaml \ --s3-bucket bucket-name \ - --s3-prefix appname/branchname/version + --s3-prefix appname/branchname/version \ --output-template-file packaged-template.yaml ``` @@ -63,7 +63,7 @@ Or using the aws-sam-cli $ sam package \ --template-file /path_to_template/template.yaml \ --s3-bucket bucket-name \ - --s3-prefix appname/branchname/version + --s3-prefix appname/branchname/version \ --output-template-file packaged-template.yaml ``` @@ -104,7 +104,7 @@ Or using aws-sam-cli ```bash $ sam deploy \ --template-file /path_to_template/packaged-template.yaml \ - --stack-name my-new-stack + --stack-name my-new-stack \ --capabilities CAPABILITY_IAM ```