From efbb624cbdae9756d2454abe6574a61df6bd1573 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 25 Mar 2024 10:24:43 +0000 Subject: [PATCH] fix repos_checker.sh --- repos_checker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos_checker.sh b/repos_checker.sh index 9be8ce1..c3b4ca9 100755 --- a/repos_checker.sh +++ b/repos_checker.sh @@ -1,4 +1,4 @@ #!/bin/sh # script to find all the git repositories in the current directory (& sub-directories) and display their git statuses -find . -name ".git" -type d -not -path "./.cache/*" -not -path "./.local/*" -exec sh -c '(cd {}/../; pwd; git status)' \;  +find . -name ".git" -type d -not -path "./.cache/*" -not -path "./.local/*" -exec sh -c '(cd {}/../; pwd; git status)' \;