Installing plugins via command line
Is there some way to install IntelliJ plugins via command line? I am looking for some command like
idea --install-plugin plugin_file.zip
We are developing IntelliJ plugin for Gauge and we want to install the plugin along with Gauge, if the user chooses to.
请先登录再写评论。
No, there is no such command. Installing the plugin is simply unpacking the plugin zip archive into a subdirectory of the plugins directory, so you can write your own code to do that.
Thanks! That sounds simple.