mirror of
https://github.com/cjdenio/uta-trax-api.git
synced 2026-08-04 22:06:34 +00:00
8 lines
199 B
Bash
Executable File
8 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
curl --output gtfs.zip --location https://gtfsfeed.rideuta.com/GTFS.zip
|
|
gtfs-import --gtfsPath gtfs.zip --sqlitePath uta-gtfs.db
|
|
rm -rf gtfs/ && unzip -d gtfs gtfs.zip
|