diff options
-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 |