Skip to content

Commit 3e9e5c4

Browse files
kdnaktkeetonian
authored andcommitted
docs: add missing backslash to bash commands (#1023)
1 parent d9b04f3 commit 3e9e5c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HOWTO.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ packaged template that can be readily deployed to CloudFormation.
5353
$ aws cloudformation package \
5454
--template-file /path_to_template/template.yaml \
5555
--s3-bucket bucket-name \
56-
--s3-prefix appname/branchname/version
56+
--s3-prefix appname/branchname/version \
5757
--output-template-file packaged-template.yaml
5858
```
5959

@@ -63,7 +63,7 @@ Or using the aws-sam-cli
6363
$ sam package \
6464
--template-file /path_to_template/template.yaml \
6565
--s3-bucket bucket-name \
66-
--s3-prefix appname/branchname/version
66+
--s3-prefix appname/branchname/version \
6767
--output-template-file packaged-template.yaml
6868
```
6969

@@ -104,7 +104,7 @@ Or using aws-sam-cli
104104
```bash
105105
$ sam deploy \
106106
--template-file /path_to_template/packaged-template.yaml \
107-
--stack-name my-new-stack
107+
--stack-name my-new-stack \
108108
--capabilities CAPABILITY_IAM
109109
```
110110

0 commit comments

Comments
 (0)