Skip to content

Commit a67e057

Browse files
committed
exclude baremetal targets
1 parent d4636aa commit a67e057

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/os/exec.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build !baremetal
2+
13
package os
24

35
import (

src/os/exec_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build linux
5+
//go:build linux && !baremetal
66

77
package os
88

src/os/osexec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:build linux
1+
//go:build linux && !baremetal
22

33
package os
44

0 commit comments

Comments
 (0)