Skip to content

Commit ae34730

Browse files
committed
bug(remove unused tfplan)
1 parent 3fcca23 commit ae34730

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/GithubPRPlanPlugin.groovy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class GithubPRPlanPlugin implements TerraformPlanCommandPlugin, TerraformEnviron
3939
@Override
4040
public void apply(TerraformPlanCommand command) {
4141
command.withPrefix("set -o pipefail;")
42-
command.withArgument("-out=tfplan")
4342
command.withStandardErrorRedirection('plan.err')
4443
command.withSuffix('| tee plan.out')
4544
}

test/GithubPRPlanPluginTest.groovy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ class GithubPRPlanPluginTest {
5353
plugin.apply(command)
5454

5555
String result = command.toString()
56-
assertThat(result, containsString("-out=tfplan"))
5756
assertThat(result, containsString("2>plan.err | tee plan.out"))
5857
}
5958

0 commit comments

Comments
 (0)