fix: update coder dotfiles in dogfood (#5451)

I wasn't calling the environment variable I set.
This commit is contained in:
Joe Previte 2022-12-16 12:08:13 -07:00 committed by GitHub
parent e76f947da2
commit a19c6fc988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
}