mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 12:12:25 +01:00
16 lines
463 B
Bash
Executable File
16 lines
463 B
Bash
Executable File
#!/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
|