Skip to content
Snippets Groups Projects
Commit 8eab7a73 authored by totten's avatar totten
Browse files

mk-drupal-test-site - Allow space in SQL file name

parent 06759792
No related branches found
No related tags found
No related merge requests found
......@@ -179,12 +179,12 @@ popd
if [ -n "$SQL_DUMP" ]; then
echo "Importing SQL dump: $SQL_DUMP"
mysql $DB_NAME < $SQL_DUMP
mysql $DB_NAME < "$SQL_DUMP"
echo "SQL import complete."
if [ -n "$SQL_DUMP2" -a -f "$SQL_DUMP2" ]; then
echo "Importing SQL dump: $SQL_DUMP2"
mysql $DB_NAME < $SQL_DUMP2
mysql $DB_NAME < "$SQL_DUMP2"
echo "SQL import complete."
fi
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment