From f95b501232d9aeef25a930a63f0597337ac5fe53 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Wed, 16 Dec 2015 09:34:28 -0800 Subject: [PATCH] Update stack installation instructions --- docs/install/server.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/install/server.md b/docs/install/server.md index b785a10a7..d6bed0e16 100644 --- a/docs/install/server.md +++ b/docs/install/server.md @@ -37,9 +37,11 @@ to help with development. [Stack](https://github.com/commercialhaskell/stack) makes it easy. It will install any necessary Haskell dependencies on your system. -* [Install Stack](https://github.com/commercialhaskell/stack#how-to-install) for your platform +* [Install Stack](http://docs.haskellstack.org/en/stable/README.html#how-to-install) for your platform ```bash #ubuntu example +#See the link above for other operating systems + wget -q -O- https://s3.amazonaws.com/download.fpcomplete.com/ubuntu/fpco.key | sudo apt-key add - echo 'deb http://download.fpcomplete.com/ubuntu/trusty stable main'|sudo tee /etc/apt/sources.list.d/fpco.list sudo apt-get update && sudo apt-get install stack -y