Files
thefuck/thefuck/rules/java.py
T
2015-05-27 15:50:41 +08:00

14 lines
309 B
Python

# Fixes common java command mistake
#
# Example:
# > java foo.java
# Error: Could not find or load main class foo.java
#
def match(command, settings):
return (command.script.startswith ('java ')
and command.script.endswith ('.java'))
def get_new_command(command, settings):
return command.script[:-5]