summaryrefslogtreecommitdiff
path: root/ant
blob: d315114fe893dc0ecadcb311fbf4fe94892b7463 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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 $@