We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3e3f5 commit d835f05Copy full SHA for d835f05
2 files changed
README.md
@@ -98,7 +98,7 @@ awsCli.command('ec2 describe-instances --instance-ids i-789b3ba7').then(function
98
or with options
99
100
```js
101
-awsCli.command('ec2 describe-instances', , { 'instance-ids': instance_id }).then(function (data) {
+awsCli.command('ec2 describe-instances', { 'instance-ids': instance_id }).then(function (data) {
102
console.log('data = ', data);
103
});
104
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "aws-cli-js",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"description": "A node.js wrapper for the aws command line interface",
5
"main": "lib/index.js",
6
"scripts": {
0 commit comments