Skip to content

Commit 1003c76

Browse files
committed
fix incorrect shell usage
1 parent 971bef8 commit 1003c76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/mysqld_safe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ safe_mysql_unix_port=${mysql_unix_port:-${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@}}
754754
mysql_unix_port_dir=`dirname $safe_mysql_unix_port`
755755
if [ ! -d $mysql_unix_port_dir ]
756756
then
757-
if ! `mkdir -p $mysql_unix_port_dir`
757+
if ! mkdir -p $mysql_unix_port_dir
758758
then
759759
log_error "Fatal error Can't create database directory '$mysql_unix_port'"
760760
exit 1

0 commit comments

Comments
 (0)