blob: cc083491a59a5ee41ca35b7a820bd218d1092908 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env sh
# Example usage:
# ./with-test-db.sh psql postgresql://pg:password@localhost:5433/postgres -c 'select 1;'
dir=$(dirname $0)
. ${dir}/_common.sh
SERVICES="db_test" main "$@"
|