From 05418d3c6784e81752df5500b19d71c994f3fdf8 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Thu, 23 Jun 2022 13:48:26 -0500 Subject: [PATCH] docs: use simplified path for dotfiles --- docs/dotfiles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dotfiles.md b/docs/dotfiles.md index 08ff48f0bcd08..41ef83293f0e0 100644 --- a/docs/dotfiles.md +++ b/docs/dotfiles.md @@ -24,7 +24,7 @@ variable "dotfiles_uri" { resource "coder_agent" "dev" { ... - startup_script = var.dotfiles_uri != "" ? "/tmp/tmp.coder*/coder dotfiles -y ${var.dotfiles_uri}" : null + startup_script = var.dotfiles_uri != "" ? "coder dotfiles -y ${var.dotfiles_uri}" : null } ```