Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Fix destroy comment (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
aknysh authored Oct 23, 2018
1 parent 38f27e5 commit ca12780
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/events/project_command_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type PlanSuccess struct {
RePlanCmd string
// ApplyCmd is the command that users should run to apply this plan.
ApplyCmd string
// ApplyCmd is the command that users should run to apply this plan.
// DestroyCmd is the command that users should run to destroy this plan.
DestroyCmd string
}

Expand Down Expand Up @@ -183,6 +183,7 @@ func (p *DefaultProjectCommandRunner) doPlan(ctx models.ProjectCommandContext) (
TerraformOutput: strings.Join(outputs, "\n"),
RePlanCmd: ctx.RePlanCmd,
ApplyCmd: ctx.ApplyCmd,
DestroyCmd: ctx.DestroyCmd,
}, "", nil
}

Expand Down

0 comments on commit ca12780

Please sign in to comment.