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 f04fb05 commit 5d45523Copy full SHA for 5d45523
.packaging/rust/src/utils.rs
@@ -24,9 +24,9 @@ fn assert_existence(path: PathBuf) {
24
}
25
26
pub fn get_enzyme_base_path() -> PathBuf {
27
- let cfg_dir = dirs::config_dir().expect("Enzyme needs access to your cfg dir.");
28
- dbg!(&cfg_dir);
29
- let enzyme_base_path = cfg_dir.join("enzyme");
+ let cache_dir = dirs::cache_dir().expect("Enzyme needs access to your cache dir.");
+ dbg!(&cache_dir);
+ let enzyme_base_path = cache_dir.join("enzyme");
30
assert_existence(enzyme_base_path.clone());
31
dbg!(&enzyme_base_path);
32
enzyme_base_path
0 commit comments