diff options
author | alaviss <alaviss@users.noreply.github.com> | 2020-02-04 08:27:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-04 09:27:54 +0100 |
commit | 7e5c07024495e9aa3422cda710a8139dcb2ca4cf (patch) | |
tree | 267c1c7367b5c2d109a6ef661af18df629963fa2 | |
parent | 1ab37ccfc604ed108886a0eed63707c3be17b67d (diff) | |
download | Nim-7e5c07024495e9aa3422cda710a8139dcb2ca4cf.tar.gz |
koch: enable checks in the compiler when running CI (#13323)
-rw-r--r-- | koch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index 57302843a..9a35dcb59 100644 --- a/koch.nim +++ b/koch.nim @@ -480,7 +480,7 @@ proc runCI(cmd: string) = when defined(posix): # appveyor (on windows) didn't run this kochExecFold("Boot", "boot") # boot without -d:nimHasLibFFI to make sure this still works - kochExecFold("Boot in release mode", "boot -d:release -d:danger") + kochExecFold("Boot in release mode", "boot -d:release") ## build nimble early on to enable remainder to depend on it if needed kochExecFold("Build Nimble", "nimble") |