mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
860734aed9
Signed-off-by: David Anderson <danderson@tailscale.com>
13 lines
243 B
Go
13 lines
243 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build unix
|
|
|
|
package main
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func doExec(cmd string, args []string, env []string) error {
|
|
return unix.Exec(cmd, args, env)
|
|
}
|