Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bfc36 commit b736b4dCopy full SHA for b736b4d
Makefile
@@ -57,9 +57,9 @@ help:
57
@python3 -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
58
59
clone: ## Clone latest cpython repository to `../cpython/` if it doesn't exist
60
- git clone https://github.com/python/cpython.git $(CPYTHON_CLONE) || echo "cpython exists"
+ git clone --depth 1 --no-single-branch https://github.com/python/cpython.git $(CPYTHON_CLONE) || echo "cpython exists"
61
cd $(CPYTHON_CLONE) && git checkout $(BRANCH)
62
- curl -L https://github.com/python/cpython/commit/383f9a7.patch/\?full_index\=1 | git apply -v --index
+ cd $(CPYTHON_CLONE) && curl -L https://github.com/python/cpython/commit/383f9a7.patch/\?full_index\=1 | git apply -v
63
64
65
$(VENV)/bin/activate:
0 commit comments