Skip to content

Commit

Permalink
exclude baremetal targets
Browse files Browse the repository at this point in the history
  • Loading branch information
leongross committed Aug 8, 2024
1 parent d4636aa commit a67e057
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/os/exec.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build !baremetal

package os

import (
Expand Down
2 changes: 1 addition & 1 deletion src/os/exec_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build linux
//go:build linux && !baremetal

package os

Expand Down
2 changes: 1 addition & 1 deletion src/os/osexec.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !baremetal

package os

Expand Down

0 comments on commit a67e057

Please sign in to comment.