Skip to content

Commit

Permalink
Fix install message
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed Dec 18, 2023
1 parent 7ba69a1 commit 9da26fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exegol/utils/DockerUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9da26fd

Please sign in to comment.