Skip to content

Commit

Permalink
Use the standard library Executable function instead (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
GameXG authored Oct 30, 2020
1 parent 581b70a commit 15e3f49
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 143 deletions.
5 changes: 2 additions & 3 deletions daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,12 @@ func MakeDaemon(attrs *DaemonAttr) (io.Reader, io.Reader, error) {
}

if stage < 2 {
// getExecutablePath() is OS-specific.
procName, err := GetExecutablePath()
procName, err := os.Executable()
if err != nil {
return fatal(fmt.Errorf("can't determine full path to executable: %s", err))
}

// If getExecutablePath() returns "" but no error, determinating the
// If Executable() returns "" but no error, determinating the
// executable path is not implemented on the host OS, so daemonization
// is not supported.
if len(procName) == 0 {
Expand Down
40 changes: 0 additions & 40 deletions daemon_darwin.go

This file was deleted.

49 changes: 0 additions & 49 deletions daemon_freebsd.go

This file was deleted.

22 changes: 0 additions & 22 deletions daemon_linux.go

This file was deleted.

29 changes: 0 additions & 29 deletions daemon_windows.go

This file was deleted.

0 comments on commit 15e3f49

Please sign in to comment.