aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEdwin Török <[email protected]>2023-12-18 21:34:34 +0000
committerJohn MacFarlane <[email protected]>2023-12-18 14:08:53 -0800
commit806740805d4b21544ec0ad4a863a3e258997bdf0 (patch)
tree9f13908f30436a0c3e77fcd1f8db66569c56b91a /Makefile
parentab159bdd1738bfd8ef5bbe44018e6bee0d7c5760 (diff)
fix(Makefile): make quick-stack was failing, "j" was expecting a number
Fixes: ``` pandoc-lua-engine> option -j: Could not parse num-threads pandoc-lua-engine> pandoc-lua-engine> Usage: test-pandoc-lua-engine [-p|--pattern PATTERN] [-t|--timeout DURATION] pandoc-lua-engine> [-l|--list-tests] [-j|--num-threads NUMBER] pandoc-lua-engine> [-q|--quiet] [--hide-successes] pandoc-lua-engine> [--color never|always|auto] [--ansi-tricks ARG] pandoc-lua-engine> [--accept] [--no-create] [--size-cutoff n] pandoc-lua-engine> [--delete-output never|onpass|always] ``` Signed-off-by: Edwin Török <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 616390e33..254448cc8 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@ quick-stack: ## unoptimized build and tests with stack
--system-ghc --flag 'pandoc:embed_data_files' \
--fast \
--test \
- --test-arguments='-j --hide-successes --ansi-tricks=false $(TESTARGS)'
+ --test-arguments='-j4 --hide-successes --ansi-tricks=false $(TESTARGS)'
.PHONY: quick-stack
prerelease: README.md fix_spacing check-cabal check-stack checkdocs man check-version-sync check-changelog check-manversion uncommitted_changes ## prerelease checks