13 lines
306 B
Bash
Executable file
13 lines
306 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d development ]; then
|
|
echo "Error: Run from the root of the tree."
|
|
exit 1
|
|
fi
|
|
|
|
idegenjar=`find out -name idegen.jar -follow | grep -v intermediates`
|
|
if [ "" = "$idegenjar" ]; then
|
|
echo "Couldn't find idegen.jar. Please run make first."
|
|
else
|
|
java -cp $idegenjar Main
|
|
fi
|