From 9e5bac3001e6397e01836e750d9cdd51cd371ef5 Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Tue, 12 Mar 2024 09:30:00 -0400 Subject: [PATCH] Print XDG_DATA_DIRS, instead --- fitnesstrax/app/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fitnesstrax/app/src/main.rs b/fitnesstrax/app/src/main.rs index 2a8f026..c2f135e 100644 --- a/fitnesstrax/app/src/main.rs +++ b/fitnesstrax/app/src/main.rs @@ -58,7 +58,7 @@ fn setup_app_close_action(app: &adw::Application) { } fn main() { - println!("XDG_DATA_DIR: {}", std::env::var("XDG_DATA_DIR").unwrap_or("".to_owned())); + println!("XDG_DATA_DIRS: {}", std::env::var("XDG_DATA_DIRS").unwrap_or("".to_owned())); // I still don't fully understand gio resources. resources_register_include! is convenient // because I don't have to deal with filesystem locations at runtime. However, I think other