Merge pull request #1918 from Dokploy/fix/web-server-backup-maxlenght

fix: update rsync command in web server backup to remove verbose flag
This commit is contained in:
Mauricio Siu 2025-05-18 02:18:31 -06:00 committed by GitHub
commit 748de47a6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,7 +67,7 @@ export const runWebServerBackup = async (backup: BackupSchedule) => {
await execAsync(cleanupCommand);
await execAsync(
`rsync -av --ignore-errors ${BASE_PATH}/ ${tempDir}/filesystem/`,
`rsync -a --ignore-errors ${BASE_PATH}/ ${tempDir}/filesystem/`,
);
writeStream.write("Copied filesystem to temp directory\n");