• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3if [ ! -d development ]; then
4    echo "Error: Run from the root of the tree."
5    exit 1
6fi
7
8idegenjar=`find out -name idegen.jar -follow | grep -v intermediates`
9if [ "" = "$idegenjar" ]; then
10    echo "Couldn't find idegen.jar. Please run make first."
11else
12    java -cp $idegenjar Main
13fi
14