From a4f2240dc90eac7117d1d98b80e87b2e5d778014 Mon Sep 17 00:00:00 2001 From: Tugdual Saunier Date: Sun, 30 Nov 2025 13:52:46 +0100 Subject: [PATCH] Fix Windows build --- fsutils_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsutils_windows.go b/fsutils_windows.go index dc15bb2..5f681cf 100644 --- a/fsutils_windows.go +++ b/fsutils_windows.go @@ -35,5 +35,5 @@ func evalSymlinks(path string) (string, error) { } // If exists, we make the path cleaned before being used - return filepath.Abs(path), nil + return filepath.Abs(path) }