mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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:
commit
011379dbb5
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user