Skip to content

Commit d1bfc36

Browse files
committed
chore: avoid shallow clone temporarily
1 parent 5fe7750 commit d1bfc36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ help:
5757
@python3 -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
5858

5959
clone: ## Clone latest cpython repository to `../cpython/` if it doesn't exist
60-
git clone --depth 1 --no-single-branch https://github.com/python/cpython.git $(CPYTHON_CLONE) || echo "cpython exists"
60+
git clone https://github.com/python/cpython.git $(CPYTHON_CLONE) || echo "cpython exists"
6161
cd $(CPYTHON_CLONE) && git checkout $(BRANCH)
6262
curl -L https://github.com/python/cpython/commit/383f9a7.patch/\?full_index\=1 | git apply -v --index
6363

0 commit comments

Comments
 (0)