Use proper newline, not literal \n

This commit is contained in:
Dane Everitt 2020-12-27 16:47:51 -08:00
parent 794cf9d9dd
commit dbb6f69e00
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ class DaemonBackupRepository extends DaemonRepository
'json' => [
'adapter' => $this->adapter ?? config('backups.default'),
'uuid' => $backup->uuid,
'ignore' => implode('\n', $backup->ignored_files),
'ignore' => implode("\n", $backup->ignored_files),
],
]
);