mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 04:02:30 +01:00
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OLD_MG_VERSION=3.3.7.2
|
|
MG_VERSION=3.4.0
|
|
|
|
if [ "$1" = "--oldversion" ]; then
|
|
echo "$OLD_MG_VERSION"
|
|
elif [ "$1" = "--version" ]; then
|
|
echo "$MG_VERSION"
|
|
fi
|