Beispiel #1
0
    def do_devinstall(self, subcmd, opts):
        """${cmd_name}: install link for development with current Komodo

        ${cmd_usage}
        ${cmd_option_list}
        Limitations:
        - Currently this only works in Komodo dev builds (i.e. won't work when using
          a Komodo SDK installed with a Komodo installer build).
        - Currently any *built* parts of the extension (e.g. binary components, jarring of
          chrome if not using 'chrome.p.manifest', built UDL lexers) will not
          get hooked up because a "build" directory is being used. Quickest
          solution is probably to update the "build" command to create built
          bits in-place.
        """
        if opts.source_dir is None:
            opts.source_dir = os.curdir
        koextlib.dev_install(opts.source_dir, force=opts.force, log=log)
Beispiel #2
0
    def do_devinstall(self, subcmd, opts):
        """${cmd_name}: install link for development with current Komodo

        ${cmd_usage}
        ${cmd_option_list}
        Limitations:
        - Currently this only works in Komodo dev builds (i.e. won't work when using
          a Komodo SDK installed with a Komodo installer build).
        - Currently any *built* parts of the extension (e.g. binary components, jarring of
          chrome if not using 'chrome.p.manifest', built UDL lexers) will not
          get hooked up because a "build" directory is being used. Quickest
          solution is probably to update the "build" command to create built
          bits in-place.
        """
        if opts.source_dir is None:
            opts.source_dir = os.curdir
        koextlib.dev_install(opts.source_dir, force=opts.force, log=log)