Initial commit (split from bld-kotlin)
This commit is contained in:
commit
a46ed2c012
67 changed files with 3428 additions and 0 deletions
15
scripts/checkcliargs.sh
Executable file
15
scripts/checkcliargs.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue