grep command formatting

This commit is contained in:
2025-11-19 01:28:18 -06:00
parent 1cf2be229c
commit d0df095c84
+2 -2
View File
@@ -117,14 +117,14 @@
echo $dev_pass_val
# Create databases if not exists
if $psql_bin -c "\du" | grep -c \""$db" \"; then
if $psql_bin -c "\l" | grep -c ""$db" "; then
echo "$db already exists, skipping creation."
else
echo "Creating database $db"
$psql_bin -c "CREATE DATABASE "$db";"
fi
if $psql_bin -c "\du" | grep -c "$db"_dev; then
if $psql_bin -c "\l" | grep -c "$db"_dev; then
echo ""$db"_dev already exists, skipping creation."
else
echo "Creating database "$db"_dev"