diff options
| author | Saikari <[email protected]> | 2026-07-27 11:51:12 +0300 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-07-30 10:17:31 +0800 |
| commit | 0376ff7ab486d773458886982f465897ca18a978 (patch) | |
| tree | 1cdc17f77c73df3160b7ef24fefe09a9105629cc /xmake/plugins/plugin/xmake.lua | |
| parent | b4e04c99d5e3d3a09ddec4ac1ceff016e05c1c64 (diff) | |
Enhance plugin management by adding support for installing plugins from GitHub and local directories, and streamline repository handling in the task system.
Diffstat (limited to 'xmake/plugins/plugin/xmake.lua')
| -rw-r--r-- | xmake/plugins/plugin/xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/plugins/plugin/xmake.lua b/xmake/plugins/plugin/xmake.lua index 87d85e81d..a1b7f61ba 100644 --- a/xmake/plugins/plugin/xmake.lua +++ b/xmake/plugins/plugin/xmake.lua @@ -33,6 +33,10 @@ task("plugin") {nil, "plugins", "v", nil, "The plugins path, url or package name.", "e.g.", " $ xmake plugin --install https://github.com/xmake-io/xmake-plugins", + " $ xmake plugin --install github:xmake-io/xmake-plugins", + " $ xmake plugin --install github:xmake-io/xmake-plugins#dev", + " $ xmake plugin --install /tmp/my-plugin", + " $ xmake plugin --install xmake-repo@hello-world", " $ xmake plugin --install hello-world", " $ xmake plugin --remove hello-world", " $ xmake plugin --list", |
