From d2a8698a78f9315e17fdd11dc4d8fcf6c19a2c59 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Tue, 3 Sep 2024 14:38:13 -0500 Subject: [PATCH] For some submodules, use --unshallow --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index f74ca3b6..bb74115b 100644 --- a/Makefile +++ b/Makefile @@ -87,12 +87,17 @@ help: submodules: git submodule init git submodule update --depth=20 + cd packages/py-shiny && git fetch --tags --unshallow + cd packages/plotnine && git fetch --tags --unshallow ## Pull latest changes in git submodules submodules-pull: git submodule update --recursive --remote + cd packages/py-shiny && git fetch --tags + cd packages/plotnine && git fetch --tags submodules-pull-shiny: git submodule update --remote packages/py-shiny + cd packages/py-shiny && git fetch --tags submodules-pull-htmltools: git submodule update --remote packages/py-htmltools