mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-28 12:12:00 +03:00
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
# Used to figure out when it's time to run package_for_devs.sh
|
|
|
|
set -e
|
|
|
|
find data/system/ -type f \( -not -name "MANIFEST.txt" \) -exec md5sum '{}' \; > data/MANIFEST.txt
|