Skip to content

Commit

Permalink
update docs, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Dec 9, 2016
1 parent 08ee42b commit 9e04ecf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ plan.target('production', [
]);

// run with `fly dynamic-hosts`
plan.target('dynamic-hosts', function(done) {
plan.target('dynamic-hosts', function(done, runtime) {
var AWS = require('aws-sdk');
AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
var ec2 = new AWS.EC2();
Expand Down Expand Up @@ -268,7 +268,7 @@ multiple hosts. Passing an `Error` object will immediately abort the current
flightplan.

```javascript
plan.target('dynamic-hosts', function(done) {
plan.target('dynamic-hosts', function(done, runtime) {
var AWS = require('aws-sdk');
AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
var ec2 = new AWS.EC2();
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function Flightplan() {
* flightplan.
*
* ```javascript
* plan.target('dynamic-hosts', function(done, options) {
* plan.target('dynamic-hosts', function(done, runtime) {
* var AWS = require('aws-sdk');
* AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
* var ec2 = new AWS.EC2();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flightplan",
"description": "Library for streamlining application deployment or systems administration tasks",
"version": "0.6.14",
"version": "0.6.15",
"author": "Patrick Stadler <patrick.stadler@gmail.com>",
"keywords": [
"deploy",
Expand Down

0 comments on commit 9e04ecf

Please sign in to comment.