mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
11 lines
226 B
Bash
Executable file
11 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
if [ -n "$POSTGRES_DATABASES" ]; then
|
|
for db in $(echo $POSTGRES_DATABASES | tr ',' ' '); do
|
|
echo "Creating $db..."
|
|
psql -U postgres -v ON_ERROR_STOP=1 -c "CREATE DATABASE $db;"
|
|
done
|
|
fi
|