summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/action/make_unzip.py
blob: e4d2902f539fb7eedaca862401b8beafe97bf173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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:]))