diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-04-06 20:47:10 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-04-30 22:10:17 +0200 |
commit | ab2a613fb5323e1d7ec303359e31f8e6da8d9109 (patch) | |
tree | 43182c33865770bb3b1726022ffc7e4d9b9a2bfc /pkg | |
parent | 79b2cf15c8d563dc5a3ea589ea1c4a29ee1315e8 (diff) |
[refactor] move conditional build instance up
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/helper/windows_install.go | 1 | ||||
-rw-r--r-- | pkg/helper/windows_manage.go | 4 | ||||
-rw-r--r-- | pkg/helper/windows_service.go | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/pkg/helper/windows_install.go b/pkg/helper/windows_install.go index 6743e2a..637e80b 100644 --- a/pkg/helper/windows_install.go +++ b/pkg/helper/windows_install.go @@ -1,4 +1,5 @@ // +build windows + // Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/pkg/helper/windows_manage.go b/pkg/helper/windows_manage.go index 96da9a7..4f7bf06 100644 --- a/pkg/helper/windows_manage.go +++ b/pkg/helper/windows_manage.go @@ -1,9 +1,9 @@ +// +build windows + // Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build windows - package helper import ( diff --git a/pkg/helper/windows_service.go b/pkg/helper/windows_service.go index 82f6e2b..df79d68 100644 --- a/pkg/helper/windows_service.go +++ b/pkg/helper/windows_service.go @@ -1,9 +1,9 @@ +// +build windows + // Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build windows - package helper import ( |