We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12807ea commit 2f88a06Copy full SHA for 2f88a06
crates/but-path/src/lib.rs
@@ -13,7 +13,7 @@ pub fn app_config_dir() -> anyhow::Result<PathBuf> {
13
if let Ok(test_dir) = std::env::var("E2E_TEST_APP_DATA_DIR") {
14
return Ok(PathBuf::from(test_dir).join("gitbutler"));
15
}
16
- dirs::data_dir()
+ dirs::config_dir()
17
.ok_or(anyhow::anyhow!("Could not get app data dir"))
18
.map(|dir| dir.join("gitbutler"))
19
0 commit comments