fix unarchive doesn't extract changed tar file #3901
This commit is contained in:
parent
b5820c7398
commit
07c8804486
1 changed files with 3 additions and 0 deletions
|
@ -132,6 +132,7 @@ import subprocess
|
|||
OWNER_DIFF_RE = re.compile(r': Uid differs$')
|
||||
GROUP_DIFF_RE = re.compile(r': Gid differs$')
|
||||
MODE_DIFF_RE = re.compile(r': Mode differs$')
|
||||
MOD_TIME_DIFF_RE = re.compile(r': Mod time differs$')
|
||||
#NEWER_DIFF_RE = re.compile(r' is newer or same age.$')
|
||||
MISSING_FILE_RE = re.compile(r': Warning: Cannot stat: No such file or directory$')
|
||||
ZIP_FILE_MODE_RE = re.compile(r'([r-][w-][stx-]){3}')
|
||||
|
@ -598,6 +599,8 @@ class TgzArchive(object):
|
|||
out += line + '\n'
|
||||
if not self.file_args['mode'] and MODE_DIFF_RE.search(line):
|
||||
out += line + '\n'
|
||||
if MOD_TIME_DIFF_RE.search(line):
|
||||
out += line + '\n'
|
||||
if MISSING_FILE_RE.search(line):
|
||||
out += line + '\n'
|
||||
if out:
|
||||
|
|
Loading…
Reference in a new issue