Skip to content

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

@shazron

Description

@shazron

This is due to the patch in v1.8.7. See #240.

From @dot-asm:
#240 (comment)

While fixing the crash this modification made it impossible to pass command line arguments to ios application. The lldb.py should read

    if len(args) > 1:
        args_arr = shlex.split(args[1])
    else:
        args_arr = shlex.split('{args}')
instead of

    if len(args) > 1:
        args_arr = shlex.split(args[1] and args[1] or '{args}')

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions