From 96bfd21e28d55d8892d8e0b1bcb83695d40c9e21 Mon Sep 17 00:00:00 2001 From: Michael Buchmann Date: Tue, 16 Apr 2024 09:45:32 -0500 Subject: [PATCH] Fix to zip loader error --- .version | 2 +- CHANGELOG.md | 4 ++++ cmd/fw-loader/fw-loader.py | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.version b/.version index 034552a..34aae15 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.30.0 +1.31.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 91866c1..616be08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.31.0] - 2024-04-16 + +- Fixed loader zip file error + ## [1.30.0] - 2024-03-27 - Added support for Paradise (Foxconn) OpenBMC nodes diff --git a/cmd/fw-loader/fw-loader.py b/cmd/fw-loader/fw-loader.py index 55289d5..f61da97 100755 --- a/cmd/fw-loader/fw-loader.py +++ b/cmd/fw-loader/fw-loader.py @@ -566,7 +566,6 @@ def main(): elif file_ext.lower() == ".zip": logging.info("unzip: "+ file) unzip_digester = subprocess.run(['unzip', file], stdout=subprocess.PIPE, cwd=download_path) - unzip_digester.wait() else: logging.error("unsupported file extension: " + file_ext) numup += process_fw(urls)