From 2da7df7453657e3866982a3d5fdcaa08733767e2 Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Wed, 20 Aug 2025 16:59:09 +0200 Subject: [PATCH] comment++ --- upload-vacuum/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload-vacuum/main.go b/upload-vacuum/main.go index bcf3f67..3921301 100644 --- a/upload-vacuum/main.go +++ b/upload-vacuum/main.go @@ -156,7 +156,7 @@ func readConfig(client *sftp.Client, path string) (*config, error) { func loadReleases(client *sftp.Client, path string, config *config) (map[string]release, error) { releases := map[string]release{} - w := client.Walk(path + "/") // The terminal / is important otherwise we'll walk the symlink + w := client.Walk(path + "/") // The terminal / is important otherwise we'll walk the symlink (kde-linux on-disk is a symlink to the real location) for w.Step() { if w.Err() != nil { return releases, errors.New("Failed to walk path: " + w.Err().Error())