updated gnu repo

This commit is contained in:
pivodevat
2025-08-26 04:41:14 +03:00
parent 12583471f1
commit 7942284237
89 changed files with 995 additions and 202 deletions

View File

@ -8,11 +8,5 @@ use std::path::PathBuf;
pub fn get_var_path() -> PathBuf {
let exe_path = std::env::current_exe().expect("Failed to get executable path");
exe_path
.parent()
.unwrap()
.join("../var")
.canonicalize()
.expect("Failed to canonicalize var path")
PathBuf::from(env!("SEXPKG_HOME")).join("var")
}