mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
485 B
18 lines
485 B
from itertools import chain
|
|
|
|
from copy import deepcopy
|
|
|
|
from gooey.util.functional import compact
|
|
|
|
|
|
def buildCliString(target, cmd, positional, optional):
|
|
positionals = deepcopy(positional)
|
|
if positionals:
|
|
positionals.insert(0, "--")
|
|
|
|
cmd_string = ' '.join(compact(chain(optional, positionals)))
|
|
|
|
if cmd != '::gooey/default':
|
|
cmd_string = u'{} {}'.format(cmd, cmd_string)
|
|
|
|
return u'{} --ignore-gooey {}'.format(target, cmd_string)
|