From 82987a18350f3c1b59d46e15c1530d9c537ec152 Mon Sep 17 00:00:00 2001 From: Xavier Michelon Date: Fri, 28 Oct 2022 07:45:06 +0200 Subject: [PATCH] Other: added missing build tags for restarter. --- pkg/restarter/start_default.go | 3 +++ pkg/restarter/start_windows.go | 3 +++ 2 files changed, 6 insertions(+) diff --git a/pkg/restarter/start_default.go b/pkg/restarter/start_default.go index 7c5ec37b..cec99e76 100644 --- a/pkg/restarter/start_default.go +++ b/pkg/restarter/start_default.go @@ -15,6 +15,9 @@ // You should have received a copy of the GNU General Public License // along with Proton Mail Bridge. If not, see . +//go:build !windows +// +build !windows + package restarter import "os/exec" diff --git a/pkg/restarter/start_windows.go b/pkg/restarter/start_windows.go index cdaefc21..e9807e5c 100644 --- a/pkg/restarter/start_windows.go +++ b/pkg/restarter/start_windows.go @@ -15,6 +15,9 @@ // You should have received a copy of the GNU General Public License // along with Proton Mail Bridge. If not, see . +//go:build windows +// +build windows + package restarter import "os/exec"