From 2a646fd1e171afd1a8310f5073c47864c58c4fc8 Mon Sep 17 00:00:00 2001 From: mirko-pagliai Date: Thu, 21 Mar 2019 15:14:06 +0100 Subject: [PATCH] fixed --- tests/bootstrap.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index a97b399..0de2fcd 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -33,14 +33,13 @@ define('APP_DIR', 'TestApp'); define('WEBROOT_DIR', 'webroot'); define('WWW_ROOT', APP . 'webroot' . DS); -define('TMP', sys_get_temp_dir() . DS); +define('TMP', sys_get_temp_dir() . DS . 'cakephp-link-scanner-tmp' . DS); define('CACHE', TMP . 'cache' . DS); define('CONFIG', APP . 'config' . DS); define('LOGS', TMP . 'logs' . DS); define('SESSIONS', TMP . 'sessions' . DS); @mkdir(TMP); -@mkdir(TMP . 'cakephp-link-scanner'); @mkdir(LOGS); @mkdir(SESSIONS); @mkdir(CACHE);