mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-26 16:02:23 +03:00
f69335edf0
Now regenerate all map data, because the schema changed. Also had to revert part of the last commit to unbreak transit route snapping in Berlin.
12 lines
285 B
Bash
Executable File
12 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -fv data/input/seattle/raw_maps/huge_seattle.bin data/system/seattle/maps/huge_seattle.bin data/input/raw_maps/huge_seattle.bin data/input/seattle/popdat.bin
|
|
|
|
./import.sh --regen_all
|
|
|
|
cargo run --release --bin game -- --prebake
|
|
|
|
cargo run --release --bin tests
|