From de69713ea5dd2c396263c6644ab2f65bcdab9d07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20=C5=BDlender?= Date: Sun, 10 Nov 2024 17:35:19 +0100 Subject: [PATCH] fix: set correct tar file gname --- nix/tar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/tar.go b/nix/tar.go index 69ffe09..b472a79 100644 --- a/nix/tar.go +++ b/nix/tar.go @@ -113,7 +113,7 @@ func appendFileToTar(tw *tar.Writer, srcPath, dstPath string, info os.FileInfo, } if perms.Gname != "" { - hdr.Gname = perms.Uname + hdr.Gname = perms.Gname } if perms.Mode != "" {