Propagate flags like --sandbox to the daemon properly
This commit is contained in:
		
							parent
							
								
									7536fe31dd
								
							
						
					
					
						commit
						6cdaa858d0
					
				
					 3 changed files with 12 additions and 6 deletions
				
			
		|  | @ -152,7 +152,7 @@ void BaseSetting<T>::convertToArg(Args & args, const std::string & category) | |||
|         .longName(name) | ||||
|         .description(description) | ||||
|         .arity(1) | ||||
|         .handler([=](std::vector<std::string> ss) { set(ss[0]); }) | ||||
|         .handler([=](std::vector<std::string> ss) { overriden = true; set(ss[0]); }) | ||||
|         .category(category); | ||||
| } | ||||
| 
 | ||||
|  | @ -201,12 +201,12 @@ template<> void BaseSetting<bool>::convertToArg(Args & args, const std::string & | |||
|     args.mkFlag() | ||||
|         .longName(name) | ||||
|         .description(description) | ||||
|         .handler([=](std::vector<std::string> ss) { value = true; }) | ||||
|         .handler([=](std::vector<std::string> ss) { override(true); }) | ||||
|         .category(category); | ||||
|     args.mkFlag() | ||||
|         .longName("no-" + name) | ||||
|         .description(description) | ||||
|         .handler([=](std::vector<std::string> ss) { value = false; }) | ||||
|         .handler([=](std::vector<std::string> ss) { override(false); }) | ||||
|         .category(category); | ||||
| } | ||||
| 
 | ||||
|  |  | |||
|  | @ -142,6 +142,12 @@ public: | |||
| 
 | ||||
|     void set(const std::string & str) override; | ||||
| 
 | ||||
|     virtual void override(const T & v) | ||||
|     { | ||||
|         overriden = true; | ||||
|         value = v; | ||||
|     } | ||||
| 
 | ||||
|     std::string to_string() override; | ||||
| 
 | ||||
|     void convertToArg(Args & args, const std::string & category) override; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue