Skip to content

Commit 5e97962

Browse files
authored
Use Terraform Dependecy Lock in system tests (#700)
1 parent e4807ae commit 5e97962

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/install/_static/terraform_deployer_run.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ set -euxo pipefail
44

55
# Terraform code may rely on content from other files than .tf files (es json, zip, html, text), so we copy all the content over
66
# See more: https://github.com/elastic/elastic-package/pull/603
7-
cp -r /stage/* /workspace
7+
# NOTE: must copy hidden files too (supported by "/.")
8+
# See more: https://github.com/elastic/package-spec/issues/269
9+
cp -r /stage/. /workspace
810

911
cleanup() {
1012
r=$?

0 commit comments

Comments
 (0)