Skip to content
Snippets Groups Projects
Commit a1b36396 authored by nimrod's avatar nimrod
Browse files

Allow debugging.

parent 62c66013
Branches
No related tags found
No related merge requests found
Pipeline #1587 passed
#!/bin/sh #!/bin/sh
set -eu set -eu
[ -z "${DEBUG:-}" ] || set -x
command -v terraform >/dev/null || { echo "Can't find the terraform binary, aborting." >&2; exit 1; } command -v terraform >/dev/null || { echo "Can't find the terraform binary, aborting." >&2; exit 1; }
version="$(terraform version | sed --silent 's/Terraform v\([0-9]*\)\.\([0-9]*\)\.[0-9]*$/\1.\2/p')" version="$(terraform version | sed --silent 's/Terraform v\([0-9]*\)\.\([0-9]*\)\.[0-9]*$/\1.\2/p')"
......
#!/bin/sh #!/bin/sh
set -eu set -eu
[ -z "${DEBUG:-}" ] || set -x
command -v terraform >/dev/null || { echo "Can't find the terraform binary, aborting." >&2; exit 1; } command -v terraform >/dev/null || { echo "Can't find the terraform binary, aborting." >&2; exit 1; }
export TF_INPUT='0' export TF_INPUT='0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment