Skip to content

Commit a53eda5

Browse files
authored
Merge pull request #59 from tklauser/go-build-lines
Add //go:build lines
2 parents a2827f0 + 4433af2 commit a53eda5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

colorable_appengine.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build appengine
12
// +build appengine
23

34
package colorable

colorable_others.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// +build !windows
2-
// +build !appengine
1+
//go:build !windows && !appengine
2+
// +build !windows,!appengine
33

44
package colorable
55

colorable_windows.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// +build windows
2-
// +build !appengine
1+
//go:build windows && !appengine
2+
// +build windows,!appengine
33

44
package colorable
55

0 commit comments

Comments
 (0)