This commit is contained in:
kjeld Schouten-Lebbing 2022-01-18 23:57:15 +01:00
parent 8b641e0b5c
commit 3be0715b43
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
setup(
name="trueupdate",
version="2.0.0",
version="2.0.1",
# The packages that constitute your project.
# For my project, I have only one - "pydash".

View File

@ -64,13 +64,13 @@ def execute_upgrades():
latest_version = split_latest[1]
if check_semver(current_version, latest_version):
print(f"Updating {chart.name}... \n")
#pre_update_ver = chart.human_version
#result = subprocess.run(['cli', '-c', f'app chart_release upgrade release_name={chart.name}'], capture_output=True)
#post_update_ver = chart.human_latest_version
#if "Upgrade complete" not in result.stdout.decode('utf-8'):
# print(f"{chart.name} failed to upgrade. \n{result.stdout.decode('utf-8')}")
#else:
# print(f"{chart.name} upgraded ({pre_update_ver} --> {post_update_ver})")
pre_update_ver = chart.human_version
result = subprocess.run(['cli', '-c', f'app chart_release upgrade release_name={chart.name}'], capture_output=True)
post_update_ver = chart.human_latest_version
if "Upgrade complete" not in result.stdout.decode('utf-8'):
print(f"{chart.name} failed to upgrade. \n{result.stdout.decode('utf-8')}")
else:
print(f"{chart.name} upgraded ({pre_update_ver} --> {post_update_ver})")
def fetch_charts():
rawcharts = subprocess.run(["cli", "-c", "app chart_release query"], stdout=subprocess.PIPE)