From dca4f8455d7b3553626ac630139998326313c49e Mon Sep 17 00:00:00 2001 From: Bart Date: Wed, 15 Nov 2023 12:17:03 +0100 Subject: [PATCH] update comment --- pkg/flowser/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/flowser/app.go b/pkg/flowser/app.go index 5048f723..504bf3f7 100644 --- a/pkg/flowser/app.go +++ b/pkg/flowser/app.go @@ -149,7 +149,7 @@ func (a *App) executable(installDir string) (string, error) { return "", errorPlatformNotSupported } - // some linux installers may install app in folder present in PATH. + // some linux installers (e.g. for .deb file) move the app file to PATH dir (e.g. /usr/bin/flowser) execFilePath, err := exec.LookPath("flowser") if err == nil { return execFilePath, nil