mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 17:37:22 +03:00
13 lines
302 B
Bash
Executable File
13 lines
302 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
|
|
mv -fv seed_data.zip ~/Dropbox
|