From 6964ed238a9d015f7502124bf615163c6c33b86a Mon Sep 17 00:00:00 2001 From: John Supplee Date: Fri, 1 Feb 2019 19:01:59 +0200 Subject: [PATCH] Show correct reference for updating versions --- README.md | 2 +- management/status_checks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84228cc3..ef3cf3a7 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Upgrading v.0.40-quota to a New Version * `cd` into the `mailinabox` directory. -* Execute `git pull` to download the latest changes. +* Execute `git pull --tags` to download the latest changes with tags. * Execute `setup/start.sh` with root privileges. diff --git a/management/status_checks.py b/management/status_checks.py index e267a0ed..a172b256 100755 --- a/management/status_checks.py +++ b/management/status_checks.py @@ -809,7 +809,7 @@ def check_miab_version(env, output): elif latest_ver is None: output.print_error("Latest Mail-in-a-Box version could not be determined. You are running version %s." % this_ver) else: - output.print_error("A new version of Mail-in-a-Box is available. You are running version %s. The latest version is %s. For upgrade instructions, see https://mailinabox.email. " + output.print_error("A new version of Mail-in-a-Box is available. You are running version %s. The latest version is %s. For upgrade instructions, see https://github.com/jrsupplee/mailinabox/blob/master/README.md. " % (this_ver, latest_ver)) def run_and_output_changes(env, pool):