From a118dd5379a45f0b0daa0ee4a7995ac605020aa0 Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Thu, 30 Apr 2026 07:06:01 +0000 Subject: [PATCH 1/2] Initial plan From b4629f0c46d79d31dad460695137e8b346683be7 Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Thu, 30 Apr 2026 07:08:13 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=9B=A0=20[fix]=20Init=20submodules=20?= =?UTF-8?q?in=20install=20bootstrap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: tomy0000000 <23290356+tomy0000000@users.noreply.github.com> --- install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install.sh b/install.sh index 9ad4c98..73388f6 100755 --- a/install.sh +++ b/install.sh @@ -82,6 +82,12 @@ function main { # Clone dotfiles git clone -q 'https://github.com/tomy0000000/dotfiles.git' "${HOME}/.dotfiles" + + # Ensure any external libs (git submodules) are available before sourcing. + # Private submodule can be missing on fresh installs, so do not fail. + if command -v git >/dev/null 2>&1; then + git -C "${HOME}/.dotfiles" submodule update --init --recursive -q || true + fi log_info "dotfiles is ready at ${HOME}/.dotfiles" }