diff options
Diffstat (limited to 'build/tools/jakarta-ant-1.5.1/bin/antRun')
-rw-r--r-- | build/tools/jakarta-ant-1.5.1/bin/antRun | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build/tools/jakarta-ant-1.5.1/bin/antRun b/build/tools/jakarta-ant-1.5.1/bin/antRun new file mode 100644 index 000000000..cba56f16d --- /dev/null +++ b/build/tools/jakarta-ant-1.5.1/bin/antRun @@ -0,0 +1,12 @@ +#! /bin/sh
+
+# Copyright (c) 2001-2002 The Apache Software Foundation. All rights
+# reserved.
+
+# Args: DIR command
+cd "$1"
+CMD="$2"
+shift
+shift
+
+exec "$CMD" "$@"
|