mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-03 01:52:16 +03:00
3de821f1b8
- fix self-destruct command - ship a GDAL-enabled importer and rebuild everything for Seattle, like the normal local process I'm pretty sure the full process should succeed now. Next step is figuring out a process for finalizing the changed output files in S3.
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -fv data/input/us/seattle/raw_maps/huge_seattle.bin data/system/us/seattle/maps/huge_seattle.bin data/input/us/seattle/popdat.bin
|
|
|
|
./import.sh --regen_all
|
|
|
|
cargo run --release --bin game -- --prebake
|
|
|
|
cargo run --release --bin tests
|