From 4bb2e55d92511d7fa13e49a84c88c8e3fa3d056f Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Wed, 19 Jan 2022 18:32:38 +0100 Subject: [PATCH] fix missing function --- setup.py | 2 +- trueupdate/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 850b580e..4f649a31 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read() setup( name="trueupdate", - version="2.1.1", + version="2.1.2", # The packages that constitute your project. # For my project, I have only one - "pydash". diff --git a/trueupdate/__init__.py b/trueupdate/__init__.py index 442094b0..a4f63896 100644 --- a/trueupdate/__init__.py +++ b/trueupdate/__init__.py @@ -126,6 +126,7 @@ def run(): print("Executing Updates...\n") execute_upgrades() print("Updating Finished\n") + docker_prune() exit(0)