Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codebuild/cd/test-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [ "$PUBLISHED_TAG_VERSION" == "$VERSION" ]; then

# Run the sample!
npm install
node dist/index.js --endpoint $ENDPOINT --cert /tmp/certificate.pem --key /tmp/privatekey.pem
node index.js --endpoint $ENDPOINT --cert /tmp/certificate.pem --key /tmp/privatekey.pem

exit 0

Expand Down
4 changes: 2 additions & 2 deletions samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ npm install
```
And then run using the command:
```sh
node dist/index.js <arguments>
node index.js <arguments>
```

All NodeJS samples will show their options by passing in `--help`.
``` sh
node dist/index.js --help
node index.js --help
```
Which will result in output showing all of the options that can be passed in at the command line, along with descriptions of what each does and whether they are optional or not.

Expand Down
Loading