Added script to validate CLI arguments
This commit is contained in:
parent
0d927d99a1
commit
b853658f1a
1 changed files with 14 additions and 0 deletions
14
checkcliargs.sh
Executable file
14
checkcliargs.sh
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
TMPNEW=/tmp/checkcliargs-new
|
||||||
|
TMPOLD=/tmp/checkcliargs-old
|
||||||
|
|
||||||
|
cd lib/compile
|
||||||
|
java -cp "*" -jar dokka-cli-*.jar -h >$TMPNEW
|
||||||
|
|
||||||
|
cd ../../examples/lib/bld
|
||||||
|
java -cp "*" -jar dokka-cli-*.jar -h >$TMPOLD
|
||||||
|
|
||||||
|
diff $TMPOLD $TMPNEW
|
||||||
|
|
||||||
|
rm -rf $TMPNEW $TMPOLD
|
Loading…
Add table
Add a link
Reference in a new issue