233db64cc1
a little copying is better than a little dependency -- go proverb We have this dependency on docker, a.k.a moby: a gigantic library, and we only need ~70 LOC, so here I tried moving it inline instead. Co-authored-by: Felix Lange <fjl@twurst.com>
15 lines
391 B
Go
15 lines
391 B
Go
// This file originates from Docker/Moby,
|
|
// https://github.com/moby/moby/blob/master/pkg/reexec/
|
|
// Licensed under Apache License 2.0: https://github.com/moby/moby/blob/master/LICENSE
|
|
// Copyright 2013-2018 Docker, Inc.
|
|
|
|
//go:build linux
|
|
|
|
package reexec
|
|
|
|
// Self returns the path to the current process's binary.
|
|
// Returns "/proc/self/exe".
|
|
func Self() string {
|
|
return "/proc/self/exe"
|
|
}
|