From ee6a5784788e30ea4616d2fafdee3d1ab4eb6faa Mon Sep 17 00:00:00 2001 From: Daniel Tschinder Date: Thu, 7 Jul 2016 10:00:04 +0200 Subject: [PATCH] Make a shallow clone of babel for testing There is no need to retrieve the whole history. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e7794e2d71..facab46e55 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ clean: ; rm -rf ./build bootstrap-babel: clean mkdir ./build - git clone https://github.com/babel/babel.git ./build/babel + git clone --depth=1 --branch=master https://github.com/babel/babel.git ./build/babel cd ./build/babel; \ make bootstrap find ./build/babel/packages -type d -name 'babylon' -prune -exec rm -rf '{}' \; -exec ln -s '../../../../../' '{}' \;