Skip to content

Commit f9ab545

Browse files
committed
fix: fix immuclient windows build
1 parent 73211c9 commit f9ab545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/immuclient/service/helper_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
"golang.org/x/sys/windows"
3434
)
3535

36-
var winExecPath = windows.KnownFolderPath(windows.FOLDERID_ProgramFiles, windows.KF_FLAG_DEFAULT)
36+
var winExecPath, _ = windows.KnownFolderPath(windows.FOLDERID_ProgramFiles, windows.KF_FLAG_DEFAULT)
3737

3838
func NewDaemon(name, description, execStartPath string, dependencies ...string) (d daemon.Daemon, err error) {
3939
d, err = daemon.New(name, description, execStartPath, dependencies...)

0 commit comments

Comments
 (0)