Swift: do not fail pack creation if dir does not exist

This commit is contained in:
Paolo Tranquilli 2022-04-12 17:05:26 +02:00
Родитель 6440242268
Коммит 8ef28787b6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -11,6 +11,6 @@ except KeyError:
sys.exit(1)
dest_dir = workspace_dir / 'swift' / 'extractor-pack'
shutil.rmtree(dest_dir)
shutil.rmtree(dest_dir, ignore_errors=True)
os.environ['DESTDIR'] = str(dest_dir)
main(sys.argv)