summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-03-12 03:39:10 -0700
committerGitHub <noreply@github.com>2020-03-12 11:39:10 +0100
commit60a3e036f6aaecabdedfab1103bb859053359f8d (patch)
treef19112d8e49a4e1d31fae982f01665b7def6f80a /compiler
parent2bb0ada79740b0961fd06ffd477c41dfef531544 (diff)
downloadNim-60a3e036f6aaecabdedfab1103bb859053359f8d.tar.gz
fix #13633 fix koch boot crashing regression (#13635)
Diffstat (limited to 'compiler')
-rw-r--r--compiler/extccomp.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim
index 2e1846424..ee921f4e1 100644
--- a/compiler/extccomp.nim
+++ b/compiler/extccomp.nim
@@ -1138,7 +1138,7 @@ proc runJsonBuildInstructions*(conf: ConfigRef; projectfile: AbsoluteFile) =
 
   except:
     let e = getCurrentException()
-    quit "\ncaught exception:n" & e.msg & "\nstacktrace:\n" & e.getStackTrace() &
+    quit "\ncaught exception:\n" & e.msg & "\nstacktrace:\n" & e.getStackTrace() &
          "error evaluating JSON file: " & jsonFile.string
 
 proc genMappingFiles(conf: ConfigRef; list: CfileList): Rope =