We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b1553f commit f054a84Copy full SHA for f054a84
crates/pgt_fs/src/dir.rs
@@ -4,8 +4,8 @@ use tracing::warn;
4
5
pub fn ensure_cache_dir() -> PathBuf {
6
if let Some(proj_dirs) = ProjectDirs::from("dev", "supabase-community", "pgt") {
7
- // Linux: /home/alice/.cache/pglt
8
- // Win: C:\Users\Alice\AppData\Local\supabase-community\pglt\cache
+ // Linux: /home/alice/.cache/pgt
+ // Win: C:\Users\Alice\AppData\Local\supabase-community\pgt\cache
9
// Mac: /Users/Alice/Library/Caches/dev.supabase-community.pgt
10
let cache_dir = proj_dirs.cache_dir().to_path_buf();
11
if let Err(err) = fs::create_dir_all(&cache_dir) {
0 commit comments