set KIVY_DATA_DIR in main script

This commit is contained in:
ThomasV 2016-03-07 21:00:55 +01:00
parent 4b4b6efb35
commit 671fe73788
2 changed files with 3 additions and 1 deletions

View File

@ -33,6 +33,9 @@ is_bundle = getattr(sys, 'frozen', False)
is_local = not is_bundle and os.path.exists(os.path.join(script_dir, "setup-release.py"))
is_android = 'ANDROID_DATA' in os.environ
# move this back to gui/kivy/__init.py once plugins are moved
os.environ['KIVY_DATA_DIR'] = os.path.abspath(os.path.dirname(__file__)) + '/gui/kivy/data/'
if is_local or is_android:
sys.path.insert(0, os.path.join(script_dir, 'packages'))
elif is_bundle and sys.platform=='darwin':

View File

@ -27,7 +27,6 @@
import sys
import os
os.environ['KIVY_DATA_DIR'] = os.path.abspath(os.path.dirname(__file__)) + '/data/'
try:
sys.argv = ['']