Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Tentative bugfix for full backup instead of inc (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuluTchab authored and GregLeBarbar committed Feb 15, 2018
1 parent 7e51e55 commit 897366c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def generate_tar_file(tar_file_path, tar_listed_inc_file_path, source_path):
tar_listed_inc_file_path -- path to file containing incremental infos to help to create tar file
source_path -- path to infos to put in TAR file
"""
command = "tar --create --file={} --listed-incremental={} {}".format(
command = "tar --create --no-check-device --file={} --listed-incremental={} {}".format(
tar_file_path,
tar_listed_inc_file_path,
source_path
Expand Down

0 comments on commit 897366c

Please sign in to comment.