Lines Matching refs:command
63 def adjust_command(self, stage, command): argument
64 super().adjust_command(stage, command)
69 return command
74 if not isinstance(command, list):
76 cmdlist = command.split()
78 cmdlist = command
83 format(stage, command, cmdlist))
94 command = ' '.join(cmdlist)
96 command = cmdlist
99 print('adjust_command: return command [{}]'.format(command))
100 return command