From f30f9154df0ae7fb95f4f9a3a3ec9325210886e3 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 29 Aug 2024 20:16:43 -0700 Subject: [PATCH] rake sync:submodules --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 148e863..67f397a 100644 --- a/Rakefile +++ b/Rakefile @@ -17,7 +17,8 @@ namespace :sync do desc "Sync submodules" task :submodules do - sh "git submodule update --init --recursive --remote" + sh "git submodule sync" + sh "git submodule foreach git pull" end desc "Sync puzzles from ~/Downloads"