From e70638010bf38802ff7eb9555cab5dcad53a8d12 Mon Sep 17 00:00:00 2001 From: Shashi Kant Date: Sat, 22 Jun 2024 15:32:44 +0530 Subject: [PATCH] fixing tailcall relative path --- scripts/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index 74cb1bd..656f0ca 100755 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -81,7 +81,7 @@ deploy() { # todo: handle name collisions mkdir -p /aws/config cp -r /app/* /aws/config - awk -v tailcall_path="$TF_VAR_TAILCALL_PATH" "{sub(/TAILCALL_PATH/,tailcall_path)}1" /aws/bootstrap > /tmp/bootstrap + awk -v tailcall_path="$TC_CONFIG_DIR/tailcall" "{sub(/TAILCALL_PATH/,tailcall_path)}1" /aws/bootstrap > /tmp/bootstrap mv /tmp/bootstrap /aws/bootstrap cd /aws echo "List: $(find /app -type f)"