Skip to content

Commit 3088c71

Browse files
authored
Merge pull request #80 from iberryful/master
fix cache syncing
2 parents 93813af + 680203a commit 3088c71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/job/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ def main_run_job(self):
503503
if os.path.isfile(storage_cache_tar):
504504
c.collect("Unpacking cache", show=True)
505505
try:
506-
c.execute(['time', 'tar', '-zxf', storage_cache_tar, '-C', self.infrabox_cache_dir], show=True)
506+
self.uncompress(storage_cache_tar, self.infrabox_cache_dir)
507507
except:
508508
c.collect("Failed to unpack cache\n", show=True)
509509
os.remove(storage_cache_tar)

0 commit comments

Comments
 (0)