Compare commits

..

1 Commits

Author SHA1 Message Date
Ludovic Fernandez
24db786bb6 fix: exclude syslog for windows, nacl, and plan9. 2019-07-24 18:58:04 -07:00
3 changed files with 4 additions and 4 deletions

View File

@@ -22,8 +22,8 @@ import (
"text/template"
)
const model = `// +build {{.CurrentGoVersion}},!{{.NextGoVersion}}
const model = `// +build {{.CurrentGoVersion}},!{{.NextGoVersion}}{{if eq .PkgName "log/syslog"}},!windows,!nacl,!plan9{{end}}
package {{.Dest}}
// Code generated by 'goexports {{.PkgName}}'. DO NOT EDIT.

View File

@@ -1,4 +1,4 @@
// +build go1.11,!go1.12
// +build go1.11,!go1.12,!windows,!nacl,!plan9
package stdlib

View File

@@ -1,4 +1,4 @@
// +build go1.12,!go1.13
// +build go1.12,!go1.13,!windows,!nacl,!plan9
package stdlib