# 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:]))
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.