File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ plan.target('production', [
204
204
]);
205
205
206
206
// run with `fly dynamic-hosts`
207
- plan .target (' dynamic-hosts' , function (done ) {
207
+ plan .target (' dynamic-hosts' , function (done , runtime ) {
208
208
var AWS = require (' aws-sdk' );
209
209
AWS .config .update ({accessKeyId: ' ...' , secretAccessKey: ' ...' });
210
210
var ec2 = new AWS.EC2 ();
@@ -268,7 +268,7 @@ multiple hosts. Passing an `Error` object will immediately abort the current
268
268
flightplan.
269
269
270
270
``` javascript
271
- plan .target (' dynamic-hosts' , function (done ) {
271
+ plan .target (' dynamic-hosts' , function (done , runtime ) {
272
272
var AWS = require (' aws-sdk' );
273
273
AWS .config .update ({accessKeyId: ' ...' , secretAccessKey: ' ...' });
274
274
var ec2 = new AWS.EC2 ();
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ function Flightplan() {
222
222
* flightplan.
223
223
*
224
224
* ```javascript
225
- * plan.target('dynamic-hosts', function(done, options ) {
225
+ * plan.target('dynamic-hosts', function(done, runtime ) {
226
226
* var AWS = require('aws-sdk');
227
227
* AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
228
228
* var ec2 = new AWS.EC2();
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " flightplan" ,
3
3
"description" : " Library for streamlining application deployment or systems administration tasks" ,
4
- "version" : " 0.6.14 " ,
4
+ "version" : " 0.6.15 " ,
5
5
"author" : " Patrick Stadler <patrick.stadler@gmail.com>" ,
6
6
"keywords" : [
7
7
" deploy" ,
You can’t perform that action at this time.
0 commit comments