mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2026-04-19 10:41:26 +00:00
Adding command line test resources. Also a fix for resources to include. Hypothetically, the matrix build will also run the command line tests to verify the native image.
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIR=".bin"
|
||||
if [ ! -d ${DIR} ]
|
||||
then
|
||||
mkdir ${DIR}
|
||||
fi
|
||||
|
||||
CLTH="${DIR}/clth.jar"
|
||||
if [ ! -f ${CLTH} ]
|
||||
then
|
||||
curl -o ${CLTH} -L https://github.com/a2geek/command-line-test-harness/releases/download/1.1/clth-1.1.jar
|
||||
fi
|
||||
|
||||
java -jar ${CLTH} app/cli-tests/src/test/resources/{ac,acx}-config.yml
|
||||
Reference in New Issue
Block a user