diff options
author | Erich Eckner <git@eckner.net> | 2023-10-02 10:31:17 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2023-10-02 10:31:17 +0200 |
commit | 29af4b410573b546aa1816b2c6656bab1286288a (patch) | |
tree | 272542a41e2ac6e769375bcc07b0b5ac93958f0b | |
parent | bd82e993b03e627919d0c5a368bd7c8822948bb1 (diff) | |
download | hardlinkedBackups-29af4b410573b546aa1816b2c6656bab1286288a.tar.xz |
backup: do not overwrite existing files
-rwxr-xr-x | backup.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -261,7 +261,7 @@ if [ -z "${rsyncShell}" ]; then esac fi if [ -f "${cache_file}" ]; then - tar -C "${neues:?}/wip/" --zstd -xf "${cache_file}" + tar -C "${neues:?}/wip/" --zstd -xkf "${cache_file}" fi done } |