Commit 808b9e63 authored by Maksim's avatar Maksim

remove the extra echos before the commands run

parent 16cfab82
......@@ -19,10 +19,8 @@ base_dir=$(cd "`dirname "$loc"`" && pwd)
# Determine os version and choose correspondent .sh or .bat file accordingly.
os_version="`uname -a`"
if [[ $os_version == *"MINGW"* ]]; then
echo "It's Windows MINGW!"
if [[ $os_version == *"MINGW"* ]]; then
cmd //C "$base_dir/target/start.bat" "$@"
else
echo "It's Linux or Mac OS!"
else
exec "$base_dir/target/start" "$@"
fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment