summaryrefslogtreecommitdiffstats
path: root/lib/bin/antRun
blob: f0a18f16531d283509b834a53dfa245f682c4baf (plain)
1
2
3
4
5
6
7
8
9
#! /bin/sh

# Args: DIR command
cd "$1"
CMD="$2"
shift
shift

exec $CMD "$@"