fix(engine): disable comma separated vectors in cxxopts

Signed-off-by: Luca Guerra <luca@guerra.sh>
This commit is contained in:
Luca Guerra
2024-10-01 16:24:17 +00:00
committed by poiana
parent 51a19ea6cb
commit 92d6c4bab6

View File

@@ -19,6 +19,9 @@ limitations under the License.
#include "../configuration.h"
#include "config_falco.h"
// disable cxxopts vector delimiter, meaning that
// -o test1,test2,test3 won't be treated like -o test1 -o test2 -o test3
#define CXXOPTS_VECTOR_DELIMITER '\0'
#include <cxxopts.hpp>
#include <fstream>