Merge branch 'bugfix/tools_filename' into 'master'

idf_tools: adds .tgz as alowed extension

See merge request espressif/esp-idf!9103
This commit is contained in:
Ivan Grokhotkov 2020-06-08 23:20:33 +08:00
commit 011379dbb5

View file

@ -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)