aboutsummaryrefslogtreecommitdiff
path: root/go/tools/go_bin_runner/process_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/tools/go_bin_runner/process_unix.go')
-rw-r--r--go/tools/go_bin_runner/process_unix.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/go/tools/go_bin_runner/process_unix.go b/go/tools/go_bin_runner/process_unix.go
deleted file mode 100644
index f59af5d2..00000000
--- a/go/tools/go_bin_runner/process_unix.go
+++ /dev/null
@@ -1,11 +0,0 @@
-//go:build unix
-
-package main
-
-import (
- "golang.org/x/sys/unix"
-)
-
-func ReplaceWithProcess(args, env []string) error {
- return unix.Exec(args[0], args, env)
-}