abstreet/data/package_for_devs.sh
Dustin Carlino d47be1e175 start a script to package data, stick it in dropbox, suck it down for
fast bootstrapping. split off developer instructions. not finished,
because I need a better connection to upload the seed data and test
everything...
2019-12-03 14:31:00 -08:00

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"