Allow ":" to be used to split patterns as well as ";" so if you are just using group names or fully explicit names you do not need to use shell quoting at all. Obviously if you use wildcards like "*" you wouldstill.

pull/3/head
Michael DeHaan 12 years ago
parent c839229f54
commit db57933614

@ -129,7 +129,8 @@ class Runner(object):
if host_name == '':
return False
subpatterns = pattern.split(";")
pattern = pattern.replace(";",":")
subpatterns = pattern.split(":")
for subpattern in subpatterns:
# the pattern could be a real glob
if subpattern == 'all':

Loading…
Cancel
Save