Skip to content

Commit

Permalink
WIP: verify works
Browse files Browse the repository at this point in the history
  • Loading branch information
tom93 committed Jan 5, 2024
1 parent b6e689b commit f7715a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/install/postgresql.bash
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if [[ $DATABASE ]] ; then
bash script/confirm.bash "Create new PostgreSQL database $DATABASE" && {
cmd=(createdb -U "$DATABASE_USERNAME" "$DATABASE")
echo "$ ${cmd[@]}"
"${cmd[@]}"
echo SKIP "${cmd[@]}"
} || exit 1
}
fi
Expand All @@ -54,7 +54,7 @@ if [[ $TEST_DATABASE ]] ; then
bash script/confirm.bash "Create new PostgreSQL database $TEST_DATABASE" && {
cmd=(createdb -U "$DATABASE_USERNAME" "$TEST_DATABASE")
echo "$ ${cmd[@]}"
"${cmd[@]}"
echo SKIP "${cmd[@]}"
} || exit 1
}
fi
Expand Down

0 comments on commit f7715a2

Please sign in to comment.