forked from cerc-io/plugeth
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"
|
||
|
}
|