You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
221 B
13 lines
221 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
FILENAME=$1
|
||
|
|
||
|
if [ -z "$1" ] ; then
|
||
|
echo "FILENAME is missing"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "Running file ${FILENAME}"
|
||
|
|
||
|
java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy --pass=rrs --run ${FILENAME}
|