Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 0865273

Browse files
authored
fix: incorrect path to update app script (#3510)
1 parent 377444b commit 0865273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: modules/webhook-github-app/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resource "null_resource" "update_app" {
66

77
provisioner "local-exec" {
88
interpreter = ["bash", "-c"]
9-
command = "${path.module}/bin/update_app.sh -we ${var.webhook_endpoint} -ws ${var.github_app.webhook_secret} -a ${var.github_app.id} -k ${var.github_app.key_base64}"
9+
command = "${path.module}/bin/update-app.sh -we ${var.webhook_endpoint} -ws ${var.github_app.webhook_secret} -a ${var.github_app.id} -k ${var.github_app.key_base64}"
1010
on_failure = continue
1111
}
1212
}

0 commit comments

Comments
 (0)