From ecb27cce37b2f71e757a171545c425696f718e7b Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Fri, 26 Jan 2024 14:37:34 +0300 Subject: [PATCH] docs(git-clone): correct `path` example to not use the repo name After #124, we now automatically append the `path` with the `repo` name, so the example should be changed to pass only the base directory as the `path` input. --- git-clone/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-clone/README.md b/git-clone/README.md index db4ce5f..e66b9e2 100644 --- a/git-clone/README.md +++ b/git-clone/README.md @@ -38,6 +38,6 @@ module "git-clone" { version = "1.0.0" agent_id = coder_agent.example.id url = "https://github.com/coder/coder" - path = "~/projects/coder/coder" + path = "~/projects/coder" } ```