fix: asyncify exists check

This commit is contained in:
daimond113 2025-01-17 20:37:38 +01:00
parent 3d659161e6
commit 9e6fa4294f
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C

View file

@ -24,7 +24,7 @@ pub trait GitBasedSource {
let project = project.clone();
if path.exists() {
if fs::metadata(&path).await.is_ok() {
spawn_blocking(move || {
let repo = match gix::open(&path) {
Ok(repo) => repo,