Skip to content

Commit

Permalink
set -x in Terraform deployer run script (#699)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
endorama authored Feb 14, 2022
1 parent 563258a commit 8a49bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/install/_static/terraform_deployer_run.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8a49bb8

Please sign in to comment.