Skip to content

Commit 8e1d2e7

Browse files
committed
fixed a little bug in the bootstrap.php file
1 parent 99c1b34 commit 8e1d2e7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 2.x branch
22
## 2.12 branch
33
### 2.12.1
4+
* fixed a little bug in the `bootstrap.php` file;
45
* the `Exceptionist` class provided by me-tools is no longer used (in anticipation of an upcoming deprecation).
56

67
### 2.12.0

config/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
'DatabaseBackup.chmod' => 0664,
4242
'DatabaseBackup.connection' => 'default',
4343
'DatabaseBackup.processTimeout' => 60,
44-
'DatabaseBackup.target' => ROOT . 'backups',
44+
'DatabaseBackup.target' => rtrim(ROOT, DS) . DS . 'backups',
4545
'DatabaseBackup.mysql.export' => '{{BINARY}} --defaults-file={{AUTH_FILE}} {{DB_NAME}}',
4646
'DatabaseBackup.mysql.import' => '{{BINARY}} --defaults-extra-file={{AUTH_FILE}} {{DB_NAME}}',
4747
'DatabaseBackup.postgres.export' => '{{BINARY}} --format=c -b --dbname=\'postgresql://{{DB_USER}}{{DB_PASSWORD}}@{{DB_HOST}}/{{DB_NAME}}\'',

0 commit comments

Comments
 (0)