From 4f14d50f5d75cb785ec78bdd555d0bfeaa9733b1 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sun, 25 Jun 2023 11:15:46 +0200 Subject: [PATCH] Check out depth of 1 when deploying --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7bd4937db..85b759739 100644 --- a/Makefile +++ b/Makefile @@ -120,7 +120,7 @@ postrelease: .PHONY: deploy deploy: - git clone --branch v$(VERSION) git@github.com:conversejs/converse.js.git $(VERSION) + git clone --branch --depth 1 v$(VERSION) git@github.com:conversejs/converse.js.git $(VERSION) cd $(VERSION) && make node && ASSET_PATH=https://cdn.conversejs.org/$(VERSION)/dist/ make dist && make doc cd .. && git pull && make node && ASSET_PATH=https://cdn.conversejs.org/dist/ make dist && make doc