From 469dbff4977a6cdcc010a7d29275560de8cccc3d Mon Sep 17 00:00:00 2001 From: Cor Legemaat Date: Tue, 19 Aug 2025 06:28:07 +0200 Subject: [PATCH] Change submodule update to pull in folder. --- ebuild/repo.scm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ebuild/repo.scm b/ebuild/repo.scm index 777bf6d..19a5139 100644 --- a/ebuild/repo.scm +++ b/ebuild/repo.scm @@ -89,11 +89,9 @@ (old-cwd (getcwd))) ;;Not working for updates only init? ;;(submodule-update repo) - (chdir path) - (system* "/usr/bin/git" "submodule" "update" "autogen") (chdir (string-join (list path "autogen") file-name-separator-string)) - (system* "/usr/bin/git" "checkout" "main") + (system* "/usr/bin/git" "pull") (chdir old-cwd)))) ;; TODO guile-git method...