From 0f559bc803dd53e6ea816d37b4f16058a796324b Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Wed, 8 Dec 2021 14:39:18 +0100 Subject: [PATCH] Do not make Package.config default to true --- include/project_parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/project_parser.hpp b/include/project_parser.hpp index 2e4392f..2886b5a 100644 --- a/include/project_parser.hpp +++ b/include/project_parser.hpp @@ -28,7 +28,7 @@ struct Package { std::string name; std::string version; bool required = true; - bool config = true; + bool config = false; std::vector components; };