Skip to content

Commit

Permalink
Merge pull request #9 from mirko-pagliai/develop
Browse files Browse the repository at this point in the history
fixed
  • Loading branch information
mirko-pagliai authored Mar 21, 2019
2 parents 980ed26 + 2a646fd commit 07f2887
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 07f2887

Please sign in to comment.