Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pkg/diff/internal/osfs/os_posix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build !plan9 && !windows
// +build !plan9,!windows

/*
Copyright 2021 Joe Lanford.

Expand All @@ -16,8 +19,6 @@ limitations under the License.
NOTE: Originally copied from https://raw.githubusercontent.com/go-git/go-billy/d7a8afccaed297c30f8dff5724dbe422b491dd0d/osfs/os_posix.go
*/

// +build !plan9,!windows

package osfs

import (
Expand Down
5 changes: 3 additions & 2 deletions pkg/diff/internal/osfs/os_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build windows
// +build windows

/*
Copyright 2021 Joe Lanford.

Expand All @@ -16,8 +19,6 @@ limitations under the License.
NOTE: Originally copied from https://raw.githubusercontent.com/go-git/go-billy/d7a8afccaed297c30f8dff5724dbe422b491dd0d/osfs/os_windows.go
*/

// +build windows

package osfs

import (
Expand Down