MegaGlest/mk/linux/mg-version.sh

16 lines
463 B
Bash
Raw Normal View History

#!/bin/bash
# Use this script to idenitfy previous and current Version for a Version Release
# ----------------------------------------------------------------------------
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
# Copyright (c) 2011 Mark Vejvoda under GNU GPL v3.0+
OLD_MG_VERSION=3.6.0.1
#MG_VERSION=3.6.1-dev
MG_VERSION=3.6.0.2
if [ "$1" = "--oldversion" ]; then
echo "$OLD_MG_VERSION"
elif [ "$1" = "--version" ]; then
echo "$MG_VERSION"
fi