From 7e8c14523d85be97dbdc8bdc6729fefb63a43ccc Mon Sep 17 00:00:00 2001 From: meeehow <45884629+meeehow@users.noreply.github.com> Date: Tue, 12 Jul 2022 09:06:22 +0200 Subject: [PATCH 1/2] Update decompress.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add linux to build tags Signed-off-by: Michał Legin --- wim/decompress.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wim/decompress.go b/wim/decompress.go index 12d5196b..01fe01cb 100644 --- a/wim/decompress.go +++ b/wim/decompress.go @@ -1,4 +1,4 @@ -// +build windows +// +build windows linux package wim From f7ce02bf1cb7ffdca479bc832787a2f80a9fb88d Mon Sep 17 00:00:00 2001 From: meeehow <45884629+meeehow@users.noreply.github.com> Date: Tue, 12 Jul 2022 09:06:45 +0200 Subject: [PATCH 2/2] Update wim.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add linux to build tags Signed-off-by: Michał Legin --- wim/wim.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wim/wim.go b/wim/wim.go index e3ca2f18..45e0c515 100644 --- a/wim/wim.go +++ b/wim/wim.go @@ -1,4 +1,4 @@ -// +build windows +// +build windows linux // Package wim implements a WIM file parser. //