6

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"]
Qwertie
  • 5,784
  • 12
  • 45
  • 89

1 Answers1

14

Turns out yeosd-bin needs to be compiled separately.

Running $ stack build yesod-bin solves the issue.

Qwertie
  • 5,784
  • 12
  • 45
  • 89