aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-08-12 13:10:13 +0200
committerMartin Czygan <martin.czygan@gmail.com>2020-08-12 13:10:13 +0200
commit0761a410526445c108739f5920d374360396d09f (patch)
treeb6ece9c4d6a4e26a3182994694436e9864e4d02f /Makefile
parenta03200e1f1dc3e83674a92b617270371bbeb09e4 (diff)
downloadfuzzycat-0761a410526445c108739f5920d374360396d09f.tar.gz
fuzzycat-0761a410526445c108739f5920d374360396d09f.zip
makefile: add container export download
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 22bdf22..ccd238b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
SHELL := /bin/bash
+FATCAT_BULK_EXPORT_ITEM := fatcat_bulk_exports_2020-08-05
.PHONY: help
help: ## Print info about all commands
@@ -15,7 +16,11 @@ deps: ## Install dependencies from setup.py into pipenv
data/release_export_expanded.json.gz: ## Download release export
mkdir -p data
- wget -c https://archive.org/download/fatcat_bulk_exports_2020-08-05/release_export_expanded.json.gz -O $@
+ wget -c https://archive.org/download/$(FATCAT_BULK_EXPORT_ITEM)/release_export_expanded.json.gz -O $@
+
+data/container_export.json.gz: ## Download container export
+ mkdir -p data
+ wget -c https://archive.org/download/$(FATCAT_BULK_EXPORT_ITEM)/container_export.json.gz -O $@
.PHONY: style
style: ## Apply import sorting and black source formatting on all files