diff options
Diffstat (limited to 'python/mozbuild/mozbuild/action/jar_maker.py')
-rw-r--r-- | python/mozbuild/mozbuild/action/jar_maker.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/action/jar_maker.py b/python/mozbuild/mozbuild/action/jar_maker.py new file mode 100644 index 0000000000..a244b66a52 --- /dev/null +++ b/python/mozbuild/mozbuild/action/jar_maker.py @@ -0,0 +1,16 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +import sys + +import mozbuild.jar +from mozbuild.action.util import log_build_task + + +def main(args): + return mozbuild.jar.main(args) + + +if __name__ == "__main__": + sys.exit(log_build_task(main, sys.argv[1:])) |