Commit ab0924dd0274

Vincent Demeester <vincent@sbr.pm>
2026-07-02 12:40:14
feat(carthage): allow nested repos in praetorian git globs
Use recursive ** globs for the aomi-git and git-pull aliases so repos under nested paths (public/, www/) resolve, now that praetorian rc2 supports recursive glob matching.
1 parent 6c52b4b
Changed files (1)
systems
carthage
systems/carthage/extra.nix
@@ -135,14 +135,14 @@ in
         "git-receive-pack" = {
           arg = {
             pos = 1;
-            glob = "/home/vincent/git/*";
+            glob = "/home/vincent/git/**";
           };
           num_args = 1;
         };
         "git-upload-pack" = {
           arg = {
             pos = 1;
-            glob = "/home/vincent/git/*";
+            glob = "/home/vincent/git/**";
           };
           num_args = 1;
         };
@@ -152,7 +152,7 @@ in
         "git-upload-pack" = {
           arg = {
             pos = 1;
-            glob = "/home/vincent/git/*";
+            glob = "/home/vincent/git/**";
           };
           num_args = 1;
         };