2020-07-24 00:42:20 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-27 01:58:14 +03:00
|
|
|
set -e
|
|
|
|
|
2020-11-06 01:05:48 +03:00
|
|
|
rm -fv data/system/seattle/maps/huge_seattle.bin data/input/raw_maps/huge_seattle.bin data/input/seattle/popdat.bin
|
2020-07-27 01:58:14 +03:00
|
|
|
|
|
|
|
./import.sh --raw --map --scenario
|
|
|
|
./import.sh --raw --map --city=berlin
|
|
|
|
./import.sh --raw --map --city=krakow
|
2020-09-04 22:18:53 +03:00
|
|
|
./import.sh --raw --map --city=london
|
2020-08-26 20:25:45 +03:00
|
|
|
./import.sh --raw --map --city=tel_aviv
|
2020-08-19 21:15:36 +03:00
|
|
|
./import.sh --raw --map --city=xian
|
2020-07-27 01:58:14 +03:00
|
|
|
|
|
|
|
cargo run --release --bin game -- --prebake
|
2020-10-01 04:32:18 +03:00
|
|
|
|
2020-11-05 23:42:52 +03:00
|
|
|
cargo run --release --bin tests
|