idf_tools: adds .tgz as alowed extension

pull/5452/head
Felipe Neves 2020-06-08 10:34:05 -03:00
rodzic d3a400c159
commit 674a070a0d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -252,7 +252,7 @@ def mkdir_p(path):
def unpack(filename, destination):
info('Extracting {0} to {1}'.format(filename, destination))
if filename.endswith('tar.gz'):
if filename.endswith(('.tar.gz', '.tgz')):
archive_obj = tarfile.open(filename, 'r:gz')
elif filename.endswith('zip'):
archive_obj = zipfile.ZipFile(filename)