From 08cb8095f195a8c16491ef07dcb049b696acdcfd Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 7 Apr 2022 01:14:08 -0400 Subject: [PATCH] Update GH clone URI field since git protocol is no longer supported. --- home/lib/login_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {} } -- 2.20.1