Skip to content

Commit a78deb0

Browse files
authored
Merge pull request #11 from Vermyndax/fix-typo
"ExecutePowerShell" is apparently case-sensitive
2 parents 08675df + a05a39d commit a78deb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
locals {
22
latest_component_minor_version = "${split(".", var.component_version)[0]}.${split(".", var.component_version)[1]}.x"
3-
action = var.platform == "Linux" ? "ExecuteBash" : "ExecutePowershell"
3+
action = var.platform == "Linux" ? "ExecuteBash" : "ExecutePowerShell"
44

55
data = templatefile("${path.module}/component.yml.tpl", {
66
description = var.description

0 commit comments

Comments
 (0)