Move template list cache to ~/.dropshell/temp_files/ out of git repos
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 47s
Build-Test-Publish / build (linux/arm64) (push) Successful in 4m0s

This commit is contained in:
j
2026-03-30 15:50:09 +13:00
parent 284183fdf1
commit a5a12e3689
4 changed files with 38 additions and 20 deletions

View File

@@ -73,7 +73,7 @@ std::vector<OverrideChange> apply_overrides(
// Apply each override, skipping variables not defined in the template
for (const auto& [key, new_val] : override_vars) {
if (!allowed_vars.empty() && allowed_vars.find(key) == allowed_vars.end()) {
warning << "Override skipped: " << key << " is not defined in the template for " << service_name << std::endl;
debug << "Override skipped: " << key << " is not defined in the template for " << service_name << std::endl;
continue;
}
std::string current_val = service_env.get_variable(key);