Skip to content

Commit a19c6fc

Browse files
authored
fix: update coder dotfiles in dogfood (coder#5451)
I wasn't calling the environment variable I set.
1 parent e76f947 commit a19c6fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dogfood/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ resource "coder_agent" "dev" {
5454
sudo service docker start
5555
DOTFILES_URI=${var.dotfiles_uri}
5656
if [ -n "$DOTFILES_URI" ]; then
57-
coder dotfiles var.dotfiles_uri -y 2>&1 | tee ~/.personalize.log
57+
coder dotfiles "$DOTFILES_URI" -y 2>&1 | tee ~/.personalize.log
5858
fi
5959
EOF
6060
}

0 commit comments

Comments
 (0)