We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a297b0 + c4a26d0 commit 8d0ec79Copy full SHA for 8d0ec79
Interlace/lib/core/input.py
@@ -181,10 +181,10 @@ def process_commands(arguments):
181
targets -= exclusions
182
183
if arguments.command:
184
- commands.add(arguments.command)
+ commands.add(arguments.command.rstrip('\n'))
185
else:
186
for command in arguments.command_list:
187
- commands.add(command.strip())
+ commands.add(command.rstrip('\n'))
188
189
final_commands = InputHelper._replace_variable_for_commands(commands, "_target_", targets)
190
final_commands = InputHelper._replace_variable_for_commands(final_commands, "_host_", targets)
0 commit comments