summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/action/install.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mozbuild/mozbuild/action/install.py')
-rw-r--r--python/mozbuild/mozbuild/action/install.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/action/install.py b/python/mozbuild/mozbuild/action/install.py
new file mode 100644
index 0000000000..02f0f2694a
--- /dev/null
+++ b/python/mozbuild/mozbuild/action/install.py
@@ -0,0 +1,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:]))