소스 검색

Check out depth of 1 when deploying

JC Brand 2 년 전
부모
커밋
4f14d50f5d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Makefile

+ 1 - 1
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