summaryrefslogtreecommitdiffstats
path: root/tools/ant/bin/antRun
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ant/bin/antRun')
-rwxr-xr-xtools/ant/bin/antRun9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/ant/bin/antRun b/tools/ant/bin/antRun
new file mode 100755
index 0000000000..f0a18f1653
--- /dev/null
+++ b/tools/ant/bin/antRun
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+# Args: DIR command
+cd "$1"
+CMD="$2"
+shift
+shift
+
+exec $CMD "$@"