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

# A simple script to invoke mozinstall from the command line without depending
# on a build config.

import sys

import mozinstall


def main(args):
    if len(args) != 2:
        print("Usage: install.py [src] [dest]")
        return 1
    src, dest = args
    mozinstall.install(src, dest)


if __name__ == "__main__":
    sys.exit(main(sys.argv[1:]))