Skip to content

Commit 22bdf59

Browse files
committed
Merge branch 'release/0.8.6'
2 parents 59883a8 + d24deb5 commit 22bdf59

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ func main() {
188188
- [Yota](https://github.com/nus)
189189
- [Erkan Durmus](https://github.com/derkan)
190190
- [maxxant](https://github.com/maxxant)
191+
- [1for](https://github.com/1for)
191192

192193
All the contributors are welcome. If you would like to be the contributor please accept some rules.
193194
- The pull requests will be accepted only in "develop" branch

daemon.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
/*
6-
Package daemon 0.8.5 for use with Go (golang) services.
6+
Package daemon 0.8.6 for use with Go (golang) services.
77
88
Package daemon provides primitives for daemonization of golang services.
99
This package is not provide implementation of user daemon,

daemon_windows.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (windows *windowsRecord) Install(args ...string) (string, error) {
5858
// Remove the service
5959
func (windows *windowsRecord) Remove() (string, error) {
6060
removeAction := "Removing " + windows.description + ":"
61-
cmd := exec.Command("nssm.exe", "remove", windows.name)
61+
cmd := exec.Command("nssm.exe", "remove", windows.name, "confirm")
6262
err := cmd.Run()
6363
if err != nil {
6464
return removeAction + failed, err

0 commit comments

Comments
 (0)