From e108265687c9f7fcbac02c5fa967dc471d8b465c Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Tue, 14 Oct 2025 15:51:05 -0400 Subject: name->description --- clone-all-github | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clone-all-github b/clone-all-github index 6381f59..739f8db 100755 --- a/clone-all-github +++ b/clone-all-github @@ -5,7 +5,7 @@ REPOS=$(curl https://api.github.com/users/$USER/repos 2>/dev/null) for i in $(seq 0 1 $(( $(echo $REPOS | jq length) - 1 ))); do name=$(echo $REPOS | jq -r .[$i].name) - description=$(echo $REPOS | jq -r .[$i].name) + description=$(echo $REPOS | jq -r .[$i].description) repo=$name.git -- cgit v1.2.3