aboutsummaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorMauro Bieg <mb21@users.noreply.github.com>2018-03-17 15:47:22 +0100
committerGitHub <noreply@github.com>2018-03-17 15:47:22 +0100
commit8a5b3368b2176b624ea6864eeabed3e20c59a868 (patch)
treeb177d6ad07f2093084150b200b9e18fd956d1f3e /INSTALL.md
parentfad8d0d67ff4736e1af554d2bfcf1688aa28c8ec (diff)
downloadpandoc-8a5b3368b2176b624ea6864eeabed3e20c59a868.tar.gz
INSTALL.md don't advise to always build tests
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 7e983d1c0..b299653d2 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -125,7 +125,7 @@ The easiest way to build pandoc from source is to use [stack]:
2. Change to the pandoc source directory and issue the following commands:
stack setup
- stack install --test
+ stack install
`stack setup` will automatically download the ghc compiler
if you don't have it. `stack install` will install the
@@ -145,7 +145,7 @@ The easiest way to build pandoc from source is to use [stack]:
3. Use `cabal` to install pandoc and its dependencies:
- cabal install pandoc --enable-tests
+ cabal install pandoc
This procedure will install the released version of pandoc,
which will be downloaded automatically from HackageDB.
@@ -272,6 +272,7 @@ test`.
To run particular tests (pattern-matching on their names), use
the `-p` option:
+ cabal install pandoc --enable-tests
cabal test --test-options='-p markdown'
Or with stack: