From 2408978d2d852003530b39f9a78d29f974dab901 Mon Sep 17 00:00:00 2001 From: Myriad-Dreamin Date: Sat, 24 Jan 2026 23:48:53 +0800 Subject: [PATCH] fix: correct plugin_paths decl --- src/clice.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/clice.cc b/src/clice.cc index ebb01266..b5e07929 100644 --- a/src/clice.cc +++ b/src/clice.cc @@ -75,11 +75,10 @@ cl::opt log_level{ cl::desc("The log level, default is info"), }; -cl::opt> plugin_paths{ +cl::list plugin_paths{ "plugin-path", cl::cat(category), - cl::value_desc("string"), - cl::init(std::vector{}), + cl::value_desc("path1,path2,path3,..."), cl::desc("The server plugins to load"), cl::CommaSeparated, };