From 57683aab7870b8aa756f43e7ae6cd30c201adfee Mon Sep 17 00:00:00 2001 From: alemi Date: Tue, 13 Feb 2024 19:43:18 +0100 Subject: [PATCH] fix: call it config --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 39c6f06..498d2c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,7 +34,7 @@ fn tci() -> Result<(), Box> { // load tci config let config_path = std::env::args().nth(1) .as_deref() - .unwrap_or("/etc/tci/tci.toml") + .unwrap_or("/etc/tci/config.toml") .to_string(); let cfg_raw = std::fs::read_to_string(config_path)