summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2011-11-23 21:19:14 -0500
committerJosh Suereth <joshua.suereth@gmail.com>2011-11-23 21:19:14 -0500
commit8ce6682983cf8a7e39fc3078faf3768c53f538ab (patch)
tree50d465c0139a86a1fa264a18e6f3ecd8ad13950c
parent6492f2f6344ef62bfc7daf731335a62021bd47b8 (diff)
downloadscala-8ce6682983cf8a7e39fc3078faf3768c53f538ab.tar.gz
scala-8ce6682983cf8a7e39fc3078faf3768c53f538ab.tar.bz2
scala-8ce6682983cf8a7e39fc3078faf3768c53f538ab.zip
Added script to run ant and resolve dependencies
-rwxr-xr-xant11
1 files changed, 11 insertions, 0 deletions
diff --git a/ant b/ant
new file mode 100755
index 0000000000..d315114fe8
--- /dev/null
+++ b/ant
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+scriptdir=$(dirname $0)
+# TODO - We should probably make sure we don't find this script with which. Hopefully people don't actually put current directory on their path.
+ant=$(which ant)
+
+pushd $scriptdir
+bash pull-binary-libs.sh
+popd
+
+$ant $@