From: Daan De Meyer Date: Mon, 24 Apr 2023 07:55:26 +0000 (+0200) Subject: Add missing complete_step() when installing build packages X-Git-Tag: v15~209 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0900374cd1f2cc0b1b3367662360faa15542127e;p=thirdparty%2Fmkosi.git Add missing complete_step() when installing build packages --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index f6352455b..d910b5f8f 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -297,7 +297,7 @@ def install_build_packages(state: MkosiState, cached: bool) -> None: if state.config.build_script is None or cached: return - with mount_build_overlay(state): + with complete_step(f"Installing build packages for {str(state.config.distribution).capitalize()}"), mount_build_overlay(state): state.installer.install_packages(state, state.config.build_packages) # Create a few necessary mount points inside the build overlay for later.