b2deb31206
dependencies. Ivy has a lot of powerful features, the most popular and useful being its flexibily, integration with ant, and its strong transitive dependencies management engine. feedback, improvements, and ok by kurt
15 lines
198 B
Bash
15 lines
198 B
Bash
#!/bin/sh
|
|
|
|
CLASSPATH=$(echo @IVYDIR@/* | tr \ :)
|
|
export CLASSPATH
|
|
|
|
main=fr.jayasoft.ivy.Main
|
|
|
|
JAVACMD=$(@JAVAPH@ -c ivy)
|
|
|
|
if [ -z "${JAVACMD}" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
exec ${JAVACMD} $main "$@"
|