use original error message

This commit is contained in:
yggverse 2024-11-08 08:47:52 +02:00
parent a0201ea83b
commit 33d8746ca3

View File

@ -34,8 +34,8 @@ impl Profile {
env!("CARGO_PKG_VERSION_MINOR") env!("CARGO_PKG_VERSION_MINOR")
)); // @TODO remove after auto-migrate feature implementation )); // @TODO remove after auto-migrate feature implementation
if let Err(e) = create_dir_all(&config_path) { if let Err(reason) = create_dir_all(&config_path) {
panic!("Failed to create profile directory: {e}") panic!("{reason}")
} }
// Init database path // Init database path