Skip to content

Commit

Permalink
Fix build constraints since windows does not depend on cgo
Browse files Browse the repository at this point in the history
  • Loading branch information
gapra-msft authored and mattn committed May 20, 2023
1 parent 0e009e3 commit 9ef99e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ieproxy_unix.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build (!windows && !darwin) || !cgo
//go:build !windows && (!darwin || !cgo)
// +build !windows,!darwin !cgo

package ieproxy
Expand Down
2 changes: 1 addition & 1 deletion pac_unix.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build (!windows && !darwin) || !cgo
//go:build !windows && (!darwin || !cgo)
// +build !windows,!darwin !cgo

package ieproxy
Expand Down

0 comments on commit 9ef99e2

Please sign in to comment.