snapframework / snap

Top-level package for the official Snap Framework libraries, includes the snaplets API as well as infrastructure for sessions, auth, and templates.
http://snapframework.com/
BSD 3-Clause "New" or "Revised" License
455 stars 68 forks source link

deps versions update #172

Closed gspia closed 8 years ago

gspia commented 8 years ago

The instructions to get everything compile with just three lines of commands didn't work on a fresh setup, as issued at #170. The problem was that that git submodules were not updated to the latest master branch with the command given. This pull proposes to add pullLatestMaster that updates the submodules to the latest master branch and on test run, everything compiled:

cd snap ./pullLatestMaster.sh ./init-sandbox.sh cabal install

In addition to the script, there is also a minor proposal to mention about this in the README.md. And it seems that the request also updated the submodule links (after which the original instructions may work, again - don't know).

mightybyte commented 8 years ago

Thanks!