Files
android_development/tools/idegen/idegen.sh
The Android Open Source Project 52d4c30ca5 auto import from //depot/cupcake/@135843
2009-03-03 19:29:09 -08:00

14 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