From 71b35ecf615996b290427590912c92458277a12f Mon Sep 17 00:00:00 2001 From: Edoardo Tenani Date: Mon, 14 Feb 2022 15:33:57 +0100 Subject: [PATCH] set -x in Terraform deployer run script In #665 we removed `-x` to debug an issue with script shebang, but the intention wasn't to remove it entirely from the script. This commit sets `-x` for the whole the script. --- internal/install/_static/terraform_deployer_run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/install/_static/terraform_deployer_run.sh b/internal/install/_static/terraform_deployer_run.sh index c7e8db469e..f070b7046a 100644 --- a/internal/install/_static/terraform_deployer_run.sh +++ b/internal/install/_static/terraform_deployer_run.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -euo pipefail +set -euxo pipefail # Terraform code may rely on content from other files than .tf files (es json, zip, html, text), so we copy all the content over # See more: https://github.com/elastic/elastic-package/pull/603