Closed robotjoosen closed 4 years ago
There is an issue with Gitify backup when the targetFile path contains spaces. Possibly related to issue #172
Gitify backup
Put double quotes around the {{targetFile}} in src/Command/BackupCommand.php
src/Command/BackupCommand.php
- exec("mysqldump -u {$database_user} {$password_parameter} -h {$database_server} {$dbase} > {$targetFile} "); + exec("mysqldump -u {$database_user} {$password_parameter} -h {$database_server} {$dbase} > \"{$targetFile}\" ");
Summary
There is an issue with
Gitify backup
when the targetFile path contains spaces. Possibly related to issue #172Solution
Put double quotes around the {{targetFile}} in
src/Command/BackupCommand.php
Environment