Reputation: 6573
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
Reputation: 6573
Turns out yeosd-bin
needs to be compiled separately.
Running $ stack build yesod-bin
solves the issue.
Upvotes: 15