From 8fca75951feb84105aae9518cdb7891cccb6564f Mon Sep 17 00:00:00 2001 From: meeehow <45884629+meeehow@users.noreply.github.com> Date: Tue, 12 Jul 2022 16:53:07 +0200 Subject: [PATCH] Allow to build WIM module for linux (#252) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update decompress.go Add linux to build tags Signed-off-by: Michał Legin * Update wim.go Add linux to build tags Signed-off-by: Michał Legin --- wim/decompress.go | 2 +- wim/wim.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wim/decompress.go b/wim/decompress.go index 12d5196..01fe01c 100644 --- a/wim/decompress.go +++ b/wim/decompress.go @@ -1,4 +1,4 @@ -// +build windows +// +build windows linux package wim diff --git a/wim/wim.go b/wim/wim.go index e3ca2f1..45e0c51 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. //