Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Jan 27, 2015
1 parent ad91167 commit 6322d46
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,14 @@ plan.target('dynamic-hosts', function(done) {
if(err) {
return done(err);
}
var hosts = response.data.Reservations.map(function(reservation) {
return reservation.Instances.map(function(instance) {
return {
host: server.PublicIpAddress,
var hosts = [];
response.data.Reservations.forEach(function(reservation) {
reservation.Instances.forEach(function(instance) {
hosts.push({
host: instance.PublicIpAddress,
username: 'pstadler',
agent: process.env.SSH_AUTH_SOCK
};
});
});
});
done(hosts);
Expand Down Expand Up @@ -253,13 +254,14 @@ plan.target('dynamic-hosts', function(done) {
if(err) {
return done(err);
}
var hosts = response.data.Reservations.map(function(reservation) {
return reservation.Instances.map(function(instance) {
return {
host: server.PublicIpAddress,
var hosts = [];
response.data.Reservations.forEach(function(reservation) {
reservation.Instances.forEach(function(instance) {
hosts.push({
host: instance.PublicIpAddress,
username: 'pstadler',
agent: process.env.SSH_AUTH_SOCK
};
});
});
});
done(hosts);
Expand Down
4 changes: 3 additions & 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.5.6",
"version": "0.6.0",
"author": "Patrick Stadler <[email protected]>",
"keywords": [
"deploy",
Expand All @@ -10,12 +10,14 @@
"devops",
"exec",
"shell",
"bash",
"ssh",
"tasks",
"parallel",
"sequential",
"remote",
"local",
"cloud",
"fabric"
],
"readmeFilename": "README.md",
Expand Down

0 comments on commit 6322d46

Please sign in to comment.