From c51be05eb41c15b082a4898b663a27fe2dcc7197 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Thu, 4 May 2023 23:00:14 -0400 Subject: [PATCH] infra/main.tf: Correct typo in b9bee14 --- infra/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/main.tf b/infra/main.tf index d7b6028..9f53c5b 100644 --- a/infra/main.tf +++ b/infra/main.tf @@ -401,7 +401,7 @@ aws configure --profile ${aws_iam_user.app_deploy.name} set aws_secret_access_ke aws configure --profile ${aws_iam_user.app_deploy.name} set region ${var.region}; : Create a random string to be used as a temporary directory name; -TMPDIR=/tmp/$$(printf '%s' {a..z} {A..Z} {0..9} | fold -w1 | shuf | paste -s -d '' | head -c16); +TMPDIR=/tmp/$(printf '%s' {a..z} {A..Z} {0..9} | fold -w1 | shuf | paste -s -d '' | head -c16); : Copy site files so that they get a new date/time stamp, allowing 's3 sync' to operate correctly; cp -r ${var.site_static_files_dir} $${TMPDIR};