summaryrefslogtreecommitdiff
path: root/makefile/scripts/motodevstudio.sh
blob: edf3e72d1332b5cca0942889a2f727dd77c6d8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

######################
# Language Parameter:
######################
#
# Value: languageID_countryID (The _countryID may be ommited)
# language_ID = An identifier from ISO 639-1
# country_ID = An identifier from ISO 3166-1
#
# Uncomment the "LANGUAGE" parameter below to start the MOTODEV Studio for Android in the language you want
#

#LANGUAGE="-nl en"
#LANGUAGE="-nl pt_BR"

START_COMMAND=${0%.sh}
unset UBUNTU_MENUPROXY

# added duo to a eclipse bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=345979

export LIBOVERLAY_SCROLLBAR=0 

if [ ${START_COMMAND:0:1} == "/" ]
then
$START_COMMAND $@ $LANGUAGE
else
./$START_COMMAND $@ $LANGUAGE
fi