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) ...@@ -19,10 +19,8 @@ base_dir=$(cd "`dirname "$loc"`" && pwd)
# Determine os version and choose correspondent .sh or .bat file accordingly. # Determine os version and choose correspondent .sh or .bat file accordingly.
os_version="`uname -a`" os_version="`uname -a`"
if [[ $os_version == *"MINGW"* ]]; then if [[ $os_version == *"MINGW"* ]]; then
echo "It's Windows MINGW!"
cmd //C "$base_dir/target/start.bat" "$@" cmd //C "$base_dir/target/start.bat" "$@"
else else
echo "It's Linux or Mac OS!"
exec "$base_dir/target/start" "$@" exec "$base_dir/target/start" "$@"
fi 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