From 85ad157f3fb99ca677dc5338867149ea7d3078b6 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Wed, 1 Dec 2021 08:56:57 -0800 Subject: [PATCH] src/os: fix build tags for non-windows PathSeparator --- src/os/path_unix.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/os/path_unix.go b/src/os/path_unix.go index f1bbb49d..562693b7 100644 --- a/src/os/path_unix.go +++ b/src/os/path_unix.go @@ -1,4 +1,5 @@ -// +build darwin linux,!baremetal +//go:build !windows +// +build !windows // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style