Make start-sandbox sed -e MYSQLD in the start script in case mysqld isn't in basedir/bin.

This commit is contained in:
Daniel Nichter
2012-11-16 12:04:47 -07:00
parent 6e0abc12f0
commit 3e687ec69a
2 changed files with 8 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ echo -n "Starting MySQL test server on port PORT... "
# Start MySQL.
cwd=$PWD
cd $BASEDIR
$BASEDIR/bin/mysqld --defaults-file=/tmp/PORT/my.sandbox.cnf > /dev/null 2>&1 &
$BASEDIR/MYSQLD --defaults-file=/tmp/PORT/my.sandbox.cnf > /dev/null 2>&1 &
cd $PWD
# Wait for MySQL to actually be up, i.e. to respond to queries.