mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
GOOS might be 'linux', but never 'Linux'!
This commit is contained in:
@@ -65,7 +65,7 @@ func main() {
|
||||
defer publisher.Close()
|
||||
|
||||
taggers := []tag.Tagger{tag.NewTopologyTagger()}
|
||||
if *dockerTagger && runtime.GOOS == "Linux" {
|
||||
if *dockerTagger && runtime.GOOS == "linux" {
|
||||
t, err := tag.NewDockerTagger(*procRoot, *dockerInterval)
|
||||
if err != nil {
|
||||
log.Fatalf("failed to start docker tagger: %v", err)
|
||||
|
||||
Reference in New Issue
Block a user