Skip to content

Commit e5cab37

Browse files
adjust pythonpath definition
1 parent a8ccb29 commit e5cab37

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

Makefile

+13-14
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,21 @@ endif
2626
DATASTORE_URL = https://files.planning.data.gov.uk/
2727

2828
first-pass::
29-
export PYTHONPATH=.
30-
mkdir -p dataset/
31-
bin/download-collection.sh
32-
bin/download-pipeline.sh
33-
bin/concat.sh
34-
python bin/download-issues.py
35-
bin/download-operational-issues.sh
36-
python bin/download-column-field.py
37-
python bin/download-converted-resources.py
38-
#bin/download-resources.sh
39-
./bin/concat-issues.py
40-
./bin/concat-column-field.py
41-
./bin/concat-converted-resource.py
29+
export PYTHONPATH=$(shell pwd); \
30+
mkdir -p dataset/; \
31+
bin/download-collection.sh; \
32+
bin/download-pipeline.sh; \
33+
bin/concat.sh; \
34+
python bin/download-issues.py; \
35+
bin/download-operational-issues.sh; \
36+
python bin/download-column-field.py; \
37+
python bin/download-converted-resources.py; \
38+
#bin/download-resources.sh; \
39+
./bin/concat-issues.py; \
40+
./bin/concat-column-field.py; \
41+
./bin/concat-converted-resource.py; \
4242
python3 bin/download_expectations.py
4343

44-
4544
second-pass:: $(DB)
4645

4746
third-pass:: $(DB_PERF)

0 commit comments

Comments
 (0)