mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-28 12:12:00 +03:00
d47be1e175
fast bootstrapping. split off developer instructions. not finished, because I need a better connection to upload the seed data and test everything...
13 lines
319 B
Bash
Executable File
13 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
# Run from the base repo directory: ./data/package_for_devs.sh
|
|
|
|
set -e
|
|
|
|
if [ "$USER" != "dabreegster" ]; then
|
|
echo "Only Dustin runs this script, to help new developers avoid a long data import process.";
|
|
exit 1;
|
|
fi
|
|
|
|
zip -r seed_data data/input data/system
|
|
echo "Fire at will: mv seed_data.zip ~/Dropbox"
|