mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
13 lines
214 B
Text
13 lines
214 B
Text
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
set -vx
|
||
|
|
||
|
bundle check || bundle install
|
||
|
cp spec/support/sample.config.yml spec/support/config.yml
|
||
|
|
||
|
for adapter in adapters/*; do
|
||
|
(cd $adapter && bin/setup)
|
||
|
done
|
||
|
|