Skip to content

Commit

Permalink
Merge pull request ManageIQ#22422 from klim-iv/master
Browse files Browse the repository at this point in the history
fix rake issue
  • Loading branch information
bdunne authored Mar 23, 2023
2 parents 0ed0da8 + b4bad50 commit 697e0da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion container-assets/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ if [ $? -eq 0 ]; then
su postgres -c "pg_ctl -D ${APPLIANCE_PG_DATA} start"
test $? -ne 0 && echo "!! Failed to start postgresql service" && exit 1

bundle exec rake db:migrate
pushd ${APP_ROOT}
bundle exec rake db:migrate
popd
else
echo "** DB has not been initialized"

Expand Down

0 comments on commit 697e0da

Please sign in to comment.