diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-14 15:51:05 -0400 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-14 15:51:05 -0400 | 
| commit | e108265687c9f7fcbac02c5fa967dc471d8b465c (patch) | |
| tree | 924c8a79499523b032923ce7b489986041f2e817 /clone | |
| parent | 8a73b19c2cf2f6e6ee6941906be94c062e14179f (diff) | |
name->description
Diffstat (limited to '')
| -rwxr-xr-x | clone-all-github | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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 | 
