17 lines
341 B
Bash
Executable file
17 lines
341 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
|
|
|
|
rm -rf $new $old
|