From 8ba078c04be95744dbd47ef943056295031cd3f3 Mon Sep 17 00:00:00 2001 From: David Duque Date: Tue, 21 Apr 2020 14:48:16 +0100 Subject: [PATCH] Attempt to fix some stuff and bump version --- README.md | 2 +- setup/bootstrap.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 26902138..50460969 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ (Power) Mail-in-a-Box ===================== -## Current Version: v0.44.POWER.2 (Tracking v0.44) +## Current Version: v0.44.POWER.3 (Tracking v0.44) This is a fork of MiaB (duh), hacked and tuned to my needs: diff --git a/setup/bootstrap.sh b/setup/bootstrap.sh index d29a461e..38c337b4 100644 --- a/setup/bootstrap.sh +++ b/setup/bootstrap.sh @@ -20,7 +20,7 @@ if [ -z "$TAG" ]; then # want to display in status checks. if [ "`lsb_release -d | sed 's/.*:\s*//' `" == "Debian GNU/Linux 10 (buster)" ]; then # This machine is running Ubuntu 18.04. - TAG=v0.44.POWER.2 + TAG=v0.44.POWER.3 else echo "This script must be run on a system running Debian 10." @@ -61,7 +61,7 @@ fi cd $HOME/mailinabox # Update it. -if [ "$TAG" != `git describe --tags` ]; then +if [ "$TAG" != "`git describe --tags`" ]; then echo Updating Mail-in-a-Box to $TAG . . . git fetch --depth 1 --force --prune origin tag $TAG if ! git checkout -q $TAG; then