Skip to content

Commit

Permalink
Merge branch 'release/0.8.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
takama committed Apr 18, 2017
2 parents 59883a8 + d24deb5 commit 22bdf59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ func main() {
- [Yota](https://github.com/nus)
- [Erkan Durmus](https://github.com/derkan)
- [maxxant](https://github.com/maxxant)
- [1for](https://github.com/1for)

All the contributors are welcome. If you would like to be the contributor please accept some rules.
- The pull requests will be accepted only in "develop" branch
Expand Down
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.8.5 for use with Go (golang) services.
Package daemon 0.8.6 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 @@ -58,7 +58,7 @@ func (windows *windowsRecord) Install(args ...string) (string, error) {
// Remove the service
func (windows *windowsRecord) Remove() (string, error) {
removeAction := "Removing " + windows.description + ":"
cmd := exec.Command("nssm.exe", "remove", windows.name)
cmd := exec.Command("nssm.exe", "remove", windows.name, "confirm")
err := cmd.Run()
if err != nil {
return removeAction + failed, err
Expand Down

0 comments on commit 22bdf59

Please sign in to comment.