From a19c6fc9887021adfcd7a857d6f6cc35ae4ed75c Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 16 Dec 2022 12:08:13 -0700 Subject: [PATCH] fix: update coder dotfiles in dogfood (#5451) I wasn't calling the environment variable I set. --- dogfood/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/main.tf b/dogfood/main.tf index 0727a8cb1f..32640baf70 100644 --- a/dogfood/main.tf +++ b/dogfood/main.tf @@ -54,7 +54,7 @@ resource "coder_agent" "dev" { sudo service docker start DOTFILES_URI=${var.dotfiles_uri} if [ -n "$DOTFILES_URI" ]; then - coder dotfiles var.dotfiles_uri -y 2>&1 | tee ~/.personalize.log + coder dotfiles "$DOTFILES_URI" -y 2>&1 | tee ~/.personalize.log fi EOF }