Commit 6671bf5af3728dd4e6b6542156a2d2c338544918
Committed by
Sergio Oliveira
1 parent
f50b2484
Exists in
master
and in
2 other branches
Download colab plugins in downloadtar target
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com> Signed-off-by: Lucas Moura <lucas.moura128@gmail.com>
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
Makefile
... | ... | @@ -12,7 +12,7 @@ all: |
12 | 12 | clean: |
13 | 13 | $(RM) -r ./build |
14 | 14 | |
15 | -SOURCES = Makefile requirements.txt *.tar.* *.whl | |
15 | +SOURCES = Makefile requirements.txt *.tar.* *.whl *.zip | |
16 | 16 | |
17 | 17 | install: |
18 | 18 | mkdir -p $$(dirname $(TARGET)) |
... | ... | @@ -33,7 +33,9 @@ $(TARBALL): |
33 | 33 | $(RM) -r $(DISTDIR) |
34 | 34 | |
35 | 35 | distclean: |
36 | - $(RM) -r $$(dirname $(TARBALL)) | |
36 | + $(RM) -r $$(dirname $(TARBALL)) src/ | |
37 | + $(RM) --verbose *.tar.* *.whl *.zip | |
37 | 38 | |
38 | 39 | downloadtar: |
39 | 40 | pip install --download $(CURDIR) -r requirements.txt |
41 | + pip install --download $(CURDIR) -r requirements-colab-plugins.txt --no-deps | ... | ... |