Skip to main content

stakpak_shared/
paths.rs

1use std::path::PathBuf;
2
3/// Returns the Stakpak home directory: `~/.stakpak/`
4pub fn stakpak_home_dir() -> PathBuf {
5    dirs::home_dir()
6        .unwrap_or_else(|| PathBuf::from("."))
7        .join(".stakpak")
8}