1
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-16 21:56:40 -05:00

Fix inverted logic in Windows service detection (#5106)

This commit is contained in:
Tobias Gruetzmacher 2022-10-02 22:56:54 +02:00 committed by GitHub
parent b1d04f5b39
commit da24f57dac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ import (
func init() { func init() {
isService, err := svc.IsWindowsService() isService, err := svc.IsWindowsService()
if err != nil || isService { if err != nil || !isService {
return return
} }
go func() { go func() {