Skip to content

Commit

Permalink
fix: update install suggestion for missing fyne command
Browse files Browse the repository at this point in the history
This makes the install process more inline with the CI workflow, where
both are tested
  • Loading branch information
nobe4 committed May 6, 2024
1 parent 5448401 commit fda64ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func printUsage(template string, data interface{}) {
func checkFyneBinHost(ctx Context) (string, error) {
fyne, err := execabs.LookPath("fyne")
if err != nil {
return "", fmt.Errorf("missed requirement: fyne. To install: `go get fyne.io/fyne/v2/cmd/fyne` and add $GOPATH/bin to $PATH")
return "", fmt.Errorf("missed requirement: fyne. To install: `go install fyne.io/fyne/v2/cmd/fyne@latest` or `go get fyne.io/fyne/v2/cmd/fyne@latest` and add $GOPATH/bin to $PATH")
}

if debugging() {
Expand Down

0 comments on commit fda64ff

Please sign in to comment.