From: Siraaj Khandkar Date: Thu, 7 Apr 2022 05:14:08 +0000 (-0400) Subject: Update GH clone URI field X-Git-Url: https://git.xandkar.net/?p=khome.git;a=commitdiff_plain;h=08cb8095f195a8c16491ef07dcb049b696acdcfd Update GH clone URI field since git protocol is no longer supported. --- diff --git a/home/lib/login_functions.sh b/home/lib/login_functions.sh index 4a266c2..6741dfd 100644 --- a/home/lib/login_functions.sh +++ b/home/lib/login_functions.sh @@ -363,7 +363,7 @@ gh_clone() { mkdir -p "$gh_dir" cd "$gh_dir" || kill -INT $$ gh_fetch_repos "$gh_user_type" "$gh_user_name" \ - | jq --raw-output '.[] | select(.fork | not) | .git_url' \ + | jq --raw-output '.[] | select(.fork | not) | .clone_url' \ | parallel -j 25 \ git clone {} }