From 807a446ad766d06d63e6a36b8c3b924ef283012f Mon Sep 17 00:00:00 2001 From: Greg Weber Date: Wed, 10 Dec 2014 15:15:54 -0800 Subject: [PATCH] remove ./scripts/install reference --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7536fb5a..e126476d 100644 --- a/README.md +++ b/README.md @@ -86,23 +86,18 @@ done ## Building your changes to Yesod -The traditional Yesod stack requires 4 "mega-repos", each with multiple cabal packages. `./script/install` will run tests against each package and install each package. +The traditional Yesod stack requires 4 "mega-repos", each with multiple cabal packages. `cabal-meta install` will install each package. ### install package in all repos ~~~ { .bash } for repo in shakespeare persistent wai yesod; do pushd $repo - ./scripts/install + cabal-meta install popd done ~~~ -### Clean build (sometimes necessary) - -~~~ { .bash } -./scripts/install --clean -~~~ ### Building individual packages