From 27bfa92521b481d9a3d4904391311e1d6d783b30 Mon Sep 17 00:00:00 2001 From: muevoid <38061852+muevoid@users.noreply.github.com> Date: Tue, 21 Jul 2020 04:59:19 +0000 Subject: [PATCH] Add submodule support to kiss. Simple pr that adds support for submodules basically adds no time to repos that dont have submodules as far as I can tell. --- kiss | 1 + 1 file changed, 1 insertion(+) diff --git a/kiss b/kiss index f1be697..facc87e 100755 --- a/kiss +++ b/kiss @@ -259,6 +259,7 @@ pkg_extract() { git remote add origin "${url%[#@]*}" git fetch --depth=1 origin "$com" || git fetch git checkout "${com:-FETCH_HEAD}" + git submodule update --init --recursive } || die "$1" "Failed to clone $src" ;;