Fix Kha path

This commit is contained in:
Lubos Lenco 2017-10-17 15:18:32 +02:00
parent ffa3f2cd91
commit 6cb81bba05

View file

@ -131,7 +131,7 @@ def get_kha_path():
elif get_os() == 'mac':
return get_sdk_path() + '/Kode Studio.app/Contents/Resources/app/extensions/kha/Kha'
else:
return get_sdk_path() + '/linux64/app/extensions/kha/Kha'
return get_sdk_path() + '/linux64/resources/app/extensions/kha/Kha'
def get_haxe_path():
if get_os() == 'win':
@ -153,7 +153,7 @@ def krom_paths():
krom_location = sdk_path + '/Kode Studio.app/Contents/Resources/app/extensions/krom/Krom/macos/Krom.app/Contents/MacOS'
krom_path = krom_location + '/Krom'
else:
krom_location = sdk_path + '/linux64/app/extensions/krom/Krom/linux'
krom_location = sdk_path + '/linux64/resources/app/extensions/krom/Krom/linux'
krom_path = krom_location + '/Krom'
return krom_location, krom_path