Skip to content

Commit

Permalink
Merge pull request #10861 from bacongobbler/gobuild
Browse files Browse the repository at this point in the history
replace +build with go:build
  • Loading branch information
bacongobbler committed Apr 15, 2022
2 parents fd1d61d + 2878cc8 commit 49819b4
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 12 deletions.
1 change: 0 additions & 1 deletion cmd/helm/root_unix.go
@@ -1,5 +1,4 @@
//go:build !windows
// +build !windows

/*
Copyright The Helm Authors.
Expand Down
1 change: 0 additions & 1 deletion cmd/helm/root_unix_test.go
@@ -1,5 +1,4 @@
//go:build !windows
// +build !windows

/*
Copyright The Helm Authors.
Expand Down
2 changes: 1 addition & 1 deletion internal/third_party/dep/fs/rename.go
@@ -1,4 +1,4 @@
// +build !windows
//go:build !windows

/*
Copyright (c) for portions of rename.go are held by The Go Authors, 2016 and are provided under
Expand Down
2 changes: 1 addition & 1 deletion internal/third_party/dep/fs/rename_windows.go
@@ -1,4 +1,4 @@
// +build windows
//go:build windows

/*
Copyright (c) for portions of rename_windows.go are held by The Go Authors, 2016 and are provided under
Expand Down
1 change: 0 additions & 1 deletion pkg/helmpath/home_unix_test.go
Expand Up @@ -12,7 +12,6 @@
// limitations under the License.

//go:build !windows
// +build !windows

package helmpath

Expand Down
2 changes: 1 addition & 1 deletion pkg/helmpath/home_windows_test.go
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// +build windows
//go:build windows

package helmpath

Expand Down
1 change: 0 additions & 1 deletion pkg/helmpath/lazypath_darwin.go
Expand Up @@ -12,7 +12,6 @@
// limitations under the License.

//go:build darwin
// +build darwin

package helmpath

Expand Down
1 change: 0 additions & 1 deletion pkg/helmpath/lazypath_darwin_test.go
Expand Up @@ -12,7 +12,6 @@
// limitations under the License.

//go:build darwin
// +build darwin

package helmpath

Expand Down
1 change: 0 additions & 1 deletion pkg/helmpath/lazypath_unix.go
Expand Up @@ -12,7 +12,6 @@
// limitations under the License.

//go:build !windows && !darwin
// +build !windows,!darwin

package helmpath

Expand Down
1 change: 0 additions & 1 deletion pkg/helmpath/lazypath_unix_test.go
Expand Up @@ -12,7 +12,6 @@
// limitations under the License.

//go:build !windows && !darwin
// +build !windows,!darwin

package helmpath

Expand Down
2 changes: 1 addition & 1 deletion pkg/helmpath/lazypath_windows.go
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// +build windows
//go:build windows

package helmpath

Expand Down
2 changes: 1 addition & 1 deletion pkg/helmpath/lazypath_windows_test.go
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// +build windows
//go:build windows

package helmpath

Expand Down

0 comments on commit 49819b4

Please sign in to comment.