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.
1 parent 76ecba9 commit da17bd2Copy full SHA for da17bd2
lib/CLI/command.rb
@@ -13,8 +13,8 @@ class Command
13
desc 'Generate a Java checkstyle suppressions.xml file from a checkstyle:check output.'
14
end
15
16
- argument :checkstyle_output do
17
- name 'checkstyle_output(String)'
+ argument :checkstyle_output_file do
+ name 'checkstyle_output_file(String)'
18
arity one
19
desc 'Output from checkstyle:check goal'
20
@@ -44,9 +44,7 @@ def run
44
private
45
46
def execute_command
47
- puts params[:checkstyle_output]
48
- puts params[:o]
49
- SuppressionGenerator.new(params[:checkstyle_output], params[:o]).generate
+ SuppressionGenerator.new(params[:checkstyle_output_file], params[:o]).generate
50
51
52
0 commit comments