7 lines
134 B
Python
7 lines
134 B
Python
def match(command, settings):
|
|
return command.script == 'cargo'
|
|
|
|
|
|
def get_new_command(command, settings):
|
|
return 'cargo build'
|