We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0015324 + 73a653a commit 28886feCopy full SHA for 28886fe
cfbs/internal_file_management.py
@@ -232,7 +232,7 @@ def fetch_archive(
232
# TODO: use Python modules instead of CLI tools?
233
if archive_type.startswith(_SUPPORTED_TAR_TYPES):
234
if shutil.which("tar"):
235
- sh("cd %s; tar -xf %s" % (content_dir, archive_path))
+ sh("cd %s; tar -xzf %s" % (content_dir, archive_path))
236
else:
237
raise CFBSExitError("Working with .tar archives requires the 'tar' utility")
238
elif archive_type == (".zip"):
0 commit comments