haskellhaskell-stack

Warning: File listed in ass.cabal file does not exist: README.md


I've just started to learn haskell and I faced this proble while trying to stack build. What's the way to solve it? Thank you in advance.


Solution

  • You don't have README.md in your project. Just create that file and the warning will go off:

    $ touch README.md
    

    Note that you have to create the file inside the project's folder.