From 4b73ae462f8bed90260943c13eef72b2529a7630 Mon Sep 17 00:00:00 2001 From: JupiterRider <60042618+JupiterRider@users.noreply.github.com> Date: Wed, 20 Aug 2025 19:45:53 +0200 Subject: [PATCH 1/2] remove tautological (unnecessary) nil condition --- deb/remote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deb/remote.go b/deb/remote.go index efba26869..c6fe595c2 100644 --- a/deb/remote.go +++ b/deb/remote.go @@ -574,7 +574,7 @@ func (repo *RemoteRepo) DownloadPackageIndexes(progress aptly.Progress, d aptly. if progress != nil { progress.ColoredPrintf("@y[!]@| @!skipping package %s: duplicate in packages index@|", p) } - } else if err != nil { + } else { return err } } From 15a3efe758f87ab9149b6756577b7449495219c2 Mon Sep 17 00:00:00 2001 From: JupiterRider <60042618+JupiterRider@users.noreply.github.com> Date: Wed, 20 Aug 2025 19:48:29 +0200 Subject: [PATCH 2/2] add JupiterRider to AUTHORS file --- AUTHORS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 8eef529da..09ae487d7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -69,4 +69,5 @@ List of contributors, in chronological order: * Leigh London (https://github.com/leighlondon) * Gordian Schoenherr (https://github.com/schoenherrg) * Silke Hofstra (https://github.com/silkeh) -* Itay Porezky (https://github.com/itayporezky) \ No newline at end of file +* Itay Porezky (https://github.com/itayporezky) +* JupiterRider (https://github.com/JupiterRider)