From d7d72db7bc62669bddd43c13a7ff78df7410cf54 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Wed, 11 Mar 2026 03:44:22 -0400 Subject: [PATCH] [FIX] script: show erplibre clone path clearly The root repo clone command showed "." as target path which was confusing and easy to miss in the list. Display "erplibre" instead for clarity. Generated by Claude Code 2.1.72 model claude-sonnet-4-6 Co-Authored-By: Mathieu Benoit --- script/git/git_local_server.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/script/git/git_local_server.py b/script/git/git_local_server.py index 8403096..3b51b19 100755 --- a/script/git/git_local_server.py +++ b/script/git/git_local_server.py @@ -740,9 +740,12 @@ def print_clone_commands(git_path, projects, port): repo_name += ".git" bare_path = os.path.join(git_path, repo_name) if os.path.isdir(bare_path): + clone_path = project["path"] + if clone_path == ".": + clone_path = "erplibre" print( f" git clone {base_url}/{repo_name}" - f" {project['path']}" + f" {clone_path}" ) count += 1 print(f"\nTotal: {count} repos available")