Skip to content

Commit

Permalink
fix(provider/cf): Default clone operations to start on creation (spin…
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider authored Mar 21, 2019
1 parent 2fd608a commit 09e96a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export class CloudFoundryServerGroupCommandBuilder {
command.freeFormDetails = stage.freeFormDetails || command.freeFormDetails;
command.maxRemainingAsgs = stage.maxRemainingAsgs;
command.region = stage.region;
command.startApplication = stage.startApplication;
command.startApplication = stage.startApplication === undefined || stage.startApplication;
command.stack = stage.stack || command.stack;
command.strategy = stage.strategy;
command.target = stage.target;
Expand Down

0 comments on commit 09e96a2

Please sign in to comment.