summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/action/make_unzip.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mozbuild/mozbuild/action/make_unzip.py')
-rw-r--r--python/mozbuild/mozbuild/action/make_unzip.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/action/make_unzip.py b/python/mozbuild/mozbuild/action/make_unzip.py
new file mode 100644
index 0000000000..e4d2902f53
--- /dev/null
+++ b/python/mozbuild/mozbuild/action/make_unzip.py
@@ -0,0 +1,25 @@
+# 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 subprocess
+import sys
+
+import buildconfig
+
+
+def make_unzip(package):
+ subprocess.check_call([buildconfig.substs["UNZIP"], package])
+
+
+def main(args):
+ if len(args) != 1:
+ print("Usage: make_unzip.py <package>", file=sys.stderr)
+ return 1
+ else:
+ make_unzip(args[0])
+ return 0
+
+
+if __name__ == "__main__":
+ sys.exit(main(sys.argv[1:]))