-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index 3500403..a00193d 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp | |||
@@ -244,17 +244,17 @@ void BackupAndRestore::backup() | |||
244 | } | 244 | } |
245 | 245 | ||
246 | // We execute tar and compressing its output with gzip.. | 246 | // We execute tar and compressing its output with gzip.. |
247 | // The error output will be written into a temp-file which could be provided | 247 | // The error output will be written into a temp-file which could be provided |
248 | // for debugging.. | 248 | // for debugging.. |
249 | qDebug( "Storing file: %s", outputFile.latin1() ); | 249 | qDebug( "Storing file: %s", outputFile.latin1() ); |
250 | outputFile += EXTENSION; | 250 | outputFile += EXTENSION; |
251 | 251 | ||
252 | QString commandLine = QString( "(tar -C %1 -c %2 | gzip > %3 ) 2> %4" ).arg( QDir::homeDirPath() ) | 252 | QString commandLine = QString( "(tar -C %1 -z --exclude=*.bck -c %2 > %3 ) 2> %4" ).arg( QDir::homeDirPath() ) |
253 | .arg( backupFiles ) | 253 | .arg( backupFiles ) |
254 | .arg( outputFile.latin1() ) | 254 | .arg( outputFile.latin1() ) |
255 | .arg( tempFileName.latin1() ); | 255 | .arg( tempFileName.latin1() ); |
256 | 256 | ||
257 | qDebug( commandLine ); | 257 | qDebug( commandLine ); |
258 | 258 | ||
259 | int r = system( commandLine ); | 259 | int r = system( commandLine ); |
260 | 260 | ||