Browse Source

Fix missing space for if condition.

Raphael Schneeberger 7 years ago
parent
commit
8cd4ae5f2f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/deb/hestia/postinst

+ 1 - 1
src/deb/hestia/postinst

@@ -35,7 +35,7 @@ if [ "$DB_SYSTEM" = 'mysql' ]; then
     sed -i "s|define('TEMP_DIR', './tmp/');|define('TEMP_DIR', '/var/lib/phpmyadmin/tmp/');|" /usr/share/phpmyadmin/libraries/vendor_config.php
 
     # Create temporary folder and change permission
-    if [ ! -d /usr/share/phpmyadmin/tmp]; then
+    if [ ! -d /usr/share/phpmyadmin/tmp ]; then
         mkdir /usr/share/phpmyadmin/tmp
         chmod 777 /usr/share/phpmyadmin/tmp
     fi