Qwertie
Qwertie

Reputation: 6573

Executable named yesod not found on path

Getting this issue while trying to run my Yesod application. stack build has already been run and gives no output anymore.

$ stack exec -- yesod devel
Executable named yesod not found on path: ["path/to/app"]

Upvotes: 7

Views: 1106

Answers (1)

Qwertie
Qwertie

Reputation: 6573

Turns out yeosd-bin needs to be compiled separately.

Running $ stack build yesod-bin solves the issue.

Upvotes: 15

Related Questions