fix(rules.ls_lah): make sure script starts with ls

Fix #271
This commit is contained in:
Pablo Santiago Blum de Aguiar
2015-07-03 13:18:48 -03:00
parent cb33c912e5
commit 25cc98a21a
2 changed files with 6 additions and 1 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
def match(command, settings):
return 'ls' in command.script and not ('ls -' in command.script)
return (command.script == 'ls'
or command.script.startswith('ls ')
and not ('ls -' in command.script))
def get_new_command(command, settings):