diff --git a/exegol/utils/DockerUtils.py b/exegol/utils/DockerUtils.py index f684297a..4d9d6d35 100644 --- a/exegol/utils/DockerUtils.py +++ b/exegol/utils/DockerUtils.py @@ -457,7 +457,7 @@ def downloadImage(cls, image: ExegolImage, install_mode: bool = False) -> bool: stream=True, decode=True, platform="linux/" + image.getArch())) - logger.success(f"Image successfully installed") + logger.success(f"Image successfully {'installed' if install_mode else 'updated'}") # Remove old image if not install_mode and image.isInstall() and UserConfig().auto_remove_images: cls.removeImage(image, upgrade_mode=not install_mode)