From 482ff15f9947ce7ad655b01abc2dbacaa6b278d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Virtus?= Date: Tue, 25 Jul 2023 17:03:56 +0200 Subject: [PATCH] fixup! Add apt credentials parser --- internal/archive/credentials.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/archive/credentials.go b/internal/archive/credentials.go index 4e006d31..a0373be3 100644 --- a/internal/archive/credentials.go +++ b/internal/archive/credentials.go @@ -96,6 +96,7 @@ func findCredentialsInDir(repoURL string, credsDir string) (creds credentials, e if err != nil { if os.IsNotExist(err) { err = nil + debugf("credentials directory %#v does not exist", credsDir) } else { err = fmt.Errorf("cannot open credentials directory: %w", err) }