Skip to content

Commit

Permalink
Merge pull request #36 from juhp/no-warnings
Browse files Browse the repository at this point in the history
build: try "--ghc-options -w" instead of --no-dump-logs
  • Loading branch information
juhp authored Sep 30, 2023
2 parents 45c4eb5 + dfb3303 commit 558215d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app-curator/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,15 @@ build jobs = do
logInfo "Building"
withWorkingDir unpackDir $ proc
"stack"
(words $ "--terminal build --test --bench --test-suite-timeout=600 --no-rerun-tests --no-run-benchmarks --haddock --no-dump-logs --no-interleaved-output --jobs=" ++ show jobs)
["--terminal",
"build",
"--test", "--test-suite-timeout=600", "--no-rerun-tests",
"--bench", "--no-run-benchmarks",
"--haddock",
"--no-interleaved-output",
"--ghc-options", "-w",
"--jobs=" ++ show jobs
]
runProcess_

hackageDistro :: Target -> RIO PantryApp ()
Expand Down

0 comments on commit 558215d

Please sign in to comment.