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