added --skip-old-files for tar

This commit is contained in:
Shital Shah 2020-10-25 02:28:00 -07:00 коммит произвёл Gustavo Rosa
Родитель 5b891d9896
Коммит 188284b190
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -55,7 +55,7 @@ def untar_dataset(conf_name:str, pt_data_dir:str, conf_dataset:Config, dataroot:
_create_ram_disk(tar_size, local_dataroot)
# os.makedirs(local_dataroot, exist_ok=True)
command = f'tar -xf "{tar_filepath}" -C "{local_dataroot}"'
command = f'tar --skip-old-files -xf "{tar_filepath}" -C "{local_dataroot}"'
utils.exec_shell_command(command)