From d0e42b602f7adea3012aab5fbc17d25eb2a73d4e Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Wed, 17 Apr 2024 00:24:46 +0100
Subject: [PATCH] Echo the git clone command before running it

---
 lib/shared/modules/zsh.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/shared/modules/zsh.nix b/lib/shared/modules/zsh.nix
index 1fd316db..c5b13d2f 100644
--- a/lib/shared/modules/zsh.nix
+++ b/lib/shared/modules/zsh.nix
@@ -44,6 +44,7 @@
         ${pkgs.coreutils}/bin/mkdir -p "''${user_path}"
         pushd "''${user_path}"
 
+        echo ${pkgs.git}/bin/git bare-clone "''${repo_url}" "''${repo_name}"
         ${pkgs.git}/bin/git bare-clone "''${repo_url}" "''${repo_name}"
 
         popd