From 71f8c7b10a9ba797f8e3b285086f3f40997e4ffc Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Fri, 26 Jan 2024 15:18:32 +0300 Subject: [PATCH] updates docs --- git-clone/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-clone/README.md b/git-clone/README.md index e66b9e2..817a22c 100644 --- a/git-clone/README.md +++ b/git-clone/README.md @@ -9,7 +9,7 @@ tags: [git, helper] # Git Clone -This module allows you to automatically clone a repository by URL and skip if it exists in the path provided. +This module allows you to automatically clone a repository by URL and skip if it exists in the base directory provided. ```hcl module "git-clone" { @@ -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" + base_dir = "~/projects/coder" } ```