Use correct default data directory

pull/171/head
Daniel Karzel 3 years ago
parent 5fe8f3108a
commit b27363e386

@ -16,10 +16,10 @@ pub fn default_config_path() -> anyhow::Result<PathBuf> {
} }
/// This is to store the DB /// This is to store the DB
// Linux: /home/<user>/.local/share/nectar/ // Linux: /home/<user>/.local/share/xmr-btc-swap/
// OSX: /Users/<user>/Library/Application Support/nectar/ // OSX: /Users/<user>/Library/Application Support/xmr-btc-swap/
pub fn default_data_dir() -> Option<std::path::PathBuf> { pub fn default_data_dir() -> Option<std::path::PathBuf> {
ProjectDirs::from("", "", "nectar").map(|proj_dirs| proj_dirs.data_dir().to_path_buf()) ProjectDirs::from("", "", "xmr-btc-swap").map(|proj_dirs| proj_dirs.data_dir().to_path_buf())
} }
pub fn ensure_directory_exists(file: &Path) -> Result<(), std::io::Error> { pub fn ensure_directory_exists(file: &Path) -> Result<(), std::io::Error> {

Loading…
Cancel
Save