Skip to content

Commit 5cb2023

Browse files
committed
Default the number of Shake threads to 0 (automatic)
This will mean that it is multithreaded by default, but will match the behaviour in ghcide. haskell/vscode-haskell#230
1 parent 6c58c2d commit 5cb2023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exe/Arguments.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ arguments exeName = Arguments
7777
(short 'j'
7878
<> help "Number of threads (0: automatic)"
7979
<> metavar "NUM"
80-
<> value 1
80+
<> value 0
8181
<> showDefault
8282
)
8383

0 commit comments

Comments
 (0)