merged from wordnik branch

This commit is contained in:
Tony Tam
2012-04-12 17:17:43 -07:00
parent 006f7d1589
commit ff8928e159
47 changed files with 593 additions and 1546 deletions

View File

@@ -6,13 +6,13 @@ then
exit
fi
echo "" > classpath.txt
for file in `ls lib`;
do echo -n 'lib/' >> classpath.txt;
for file in `ls target/lib`;
do echo -n 'target/lib/' >> classpath.txt;
echo -n $file >> classpath.txt;
echo -n ':' >> classpath.txt;
done
for file in `ls build`;
do echo -n 'build/' >> classpath.txt;
for file in `ls target/*.jar`;
do echo -n '' >> classpath.txt;
echo -n $file >> classpath.txt;
echo -n ':' >> classpath.txt;
done