blob: 04af2c0f256cbc08a53355e951767c184384e39f [file] [log] [blame]
#!/bin/sh
set -e
export DATABASE_URL="/tmp/test_examples.db"
for dir in $(find . -maxdepth 1 -mindepth 1 -type d); do
cd $dir
../../../bin/diesel database reset
cargo build
cd ..
done