12 lines
254 B
Bash
Executable file
12 lines
254 B
Bash
Executable file
#!/bin/bash
|
|
|
|
main=io.gitlab.arturbosch.detekt.cli.Main
|
|
new=/tmp/checkcliargs-new
|
|
old=/tmp/checkcliargs-old
|
|
|
|
java -cp "lib/compile/*:examples/lib/bld/*" $main --help >$new
|
|
java -cp "examples/lib/bld/*" $main --help >$old
|
|
|
|
diff $old $new
|
|
|
|
rm -rf $new $old
|