Fixes #250 - Can't pass in command line args to the iOS application

Thanks to https://github.com/dot-asm
This commit is contained in:
Shazron Abdullah 2016-09-16 02:52:04 -07:00
parent 66ca97ef12
commit baa524eda5

View File

@ -34,7 +34,9 @@ def run_command(debugger, command, result, internal_dict):
lldb.target.modules[0].SetPlatformFileSpec(lldb.SBFileSpec(device_app))
args_arr = []
if len(args) > 1:
args_arr = shlex.split(args[1] and args[1] or '{args}')
args_arr = shlex.split(args[1])
else:
args_arr = shlex.split('{args}')
lldb.target.Launch(lldb.SBLaunchInfo(args_arr), error)
lockedstr = ': Locked'
if lockedstr in str(error):