Skip to content

Commit

Permalink
Merge branch 'hotfix/0.10.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
takama committed Mar 17, 2018
2 parents 29a7daa + 2297260 commit fbd475b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

/*
Package daemon 0.10.3 for use with Go (golang) services.
Package daemon 0.10.4 for use with Go (golang) services.
Package daemon provides primitives for daemonization of golang services.
This package is not provide implementation of user daemon,
Expand Down
2 changes: 1 addition & 1 deletion daemon_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (windows *windowsRecord) Stop() (string, error) {
cmd := exec.Command("sc", "stop", windows.name)
err := cmd.Run()
if err != nil {
return stopAction + failed, err
return stopAction + failed, getWindowsError(err)
}
return stopAction + " completed.", nil
}
Expand Down

0 comments on commit fbd475b

Please sign in to comment.