From 8dc7d8e2769f4573213aa5672ac6eab8807bd685 Mon Sep 17 00:00:00 2001 From: Kayshen-X Date: Fri, 3 Jul 2026 22:18:29 +0800 Subject: [PATCH] chore: fetch the jian submodule over https MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit vendor/jian's submodule url was ssh-only while the repo is public — a plain git clone --recurse-submodules failed for anyone without a GitHub ssh key (CI never noticed: actions/checkout token-rewrites ssh urls). Point it at the public https url like the other two submodules. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 3c69d61bc..aaec5bc00 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ url = https://github.com/ZSeven-W/agent-rs.git [submodule "vendor/jian"] path = vendor/jian - url = git@github.com:ZSeven-W/jian.git + url = https://github.com/ZSeven-W/jian.git [submodule "vendor/casement"] path = vendor/casement url = https://github.com/ZSeven-W/casement.git