Skip to content

Commit c54f2bb

Browse files
committed
fix(buffering): disable TTY for prepeare scripts to avoid unsightly buffering
1 parent 372c30e commit c54f2bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

cmd/download.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
set -e;
33

44
# per-source downloads
5-
function download_wof(){ compose_run 'whosonfirst' './bin/download'; }
6-
function download_oa(){ compose_run 'openaddresses' './bin/download'; }
7-
function download_osm(){ compose_run 'openstreetmap' './bin/download'; }
8-
function download_geonames(){ compose_run 'geonames' './bin/download'; }
9-
function download_tiger(){ compose_run 'interpolation' './bin/download-tiger'; }
10-
function download_transit(){ compose_run 'transit' './bin/download'; }
11-
function download_csv(){ compose_run 'csv-importer' './bin/download'; }
5+
function download_wof(){ compose_run -T 'whosonfirst' './bin/download'; }
6+
function download_oa(){ compose_run -T 'openaddresses' './bin/download'; }
7+
function download_osm(){ compose_run -T 'openstreetmap' './bin/download'; }
8+
function download_geonames(){ compose_run -T 'geonames' './bin/download'; }
9+
function download_tiger(){ compose_run -T 'interpolation' './bin/download-tiger'; }
10+
function download_transit(){ compose_run -T 'transit' './bin/download'; }
11+
function download_csv(){ compose_run -T 'csv-importer' './bin/download'; }
1212

1313
register 'download' 'wof' '(re)download whosonfirst data' download_wof
1414
register 'download' 'oa' '(re)download openaddresses data' download_oa

0 commit comments

Comments
 (0)