I'm trying create a new yesod app, as I am new to Yesod and Haskell, I'm following the instructions on this page. http://www.yesodweb.com/page/quickstart
So far I've set my system up to run with Stackage Server and installed the neccessary build tools, I've ran a yesod init command and build the app, but for some reason, when I cd into my app, and try to run cabal sandbox init, I'm getting the error
cabal: unrecognised command: sandbox (try --help)
when I run cabal --version I get this
cabal-install version 1.16.0.2 using version 1.16.0 of the Cabal library
and my .bashrc has this line
export PATH="~/.cabal/bin:/opt/cabal/1.20/bin:/opt/ghc/7.8.3/bin:$PATH"
Any ideas why this is?
Thanks.