mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Use correct default data directory
This commit is contained in:
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…
Reference in New Issue
Block a user