From 582302b1db0ab69618e923fa360d6da2c8e7c0ad Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Sun, 1 Sep 2019 17:29:44 +0200 Subject: [PATCH] apk backend: .PKGINFO error fixed --- src/context.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.cr b/src/context.cr index ab9763f..7718016 100644 --- a/src/context.cr +++ b/src/context.cr @@ -32,7 +32,7 @@ def pkginfo(package) lines << "conflicts = #{atom.to_s}" end - lines.join "\n" + lines.join("\n") + "\n" end class Package::Backend::Packaging