15 lines
323 B
Bash
Executable file
15 lines
323 B
Bash
Executable file
#!/bin/bash
|
|
|
|
main=org.jetbrains.dokka.MainKt
|
|
new=/tmp/checkcliargs-new
|
|
old=/tmp/checkcliargs-old
|
|
|
|
java -cp "lib/compile/*" $main -h >$new
|
|
java -cp "examples/lib/bld/*" $main -h >$old
|
|
|
|
diff $old $new
|
|
|
|
java -cp "lib/compile/*" $main -sourceSet -h >$new
|
|
java -cp "examples/lib/bld/*" $main -sourceSet -h >$old
|
|
|
|
diff $old $new
|