Skip to content

Commit

Permalink
Bugfix: the database content script will now actually be executed
Browse files Browse the repository at this point in the history
  • Loading branch information
floriandammeyer committed Nov 3, 2014
1 parent 6979b17 commit ab9dcd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vagrant-up/database-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ if [ -f "${database_init_script}" ];
then
mysql -uroot -ppassword default_database < "${database_init_script}"

if [ -f "{$database_content_script}" ];
if [ -f "${database_content_script}" ];
then
mysql -uroot -ppassword default_database < "{$database_content_script}"
mysql -uroot -ppassword default_database < "${database_content_script}"
fi
fi

0 comments on commit ab9dcd8

Please sign in to comment.