Diego Saa
Diego Saa

Reputation: 1456

When I type yesod devel I get the error: file devel.hs not found

When I type yesod devel I get the following error:

ERROR: file devel.hs not found

How do I fix this?

I'm on Ubuntu 12.04.1 LTS, my ghc version is 7.4.1 and my yesod version is 0.10.2.1

Upvotes: 2

Views: 593

Answers (2)

Isanka Wijerathne
Isanka Wijerathne

Reputation: 4176

Use stack to create and build the project. Please use 'stack new' to create a new project and initialize again.

Upvotes: 2

Edward Z. Yang
Edward Z. Yang

Reputation: 26752

It sounds like you have not setup the Yesod scaffolding yet. Run 'yesod init' first, then cd into the created directory and try 'yesod devel'.

Upvotes: 2

Related Questions