Skip to content

Commit

Permalink
simple fix for #128 (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
planetis-m authored Jul 20, 2024
1 parent 561019b commit 69063fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runners.nim
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ proc runNimScript*(c: var Reporter; scriptContent: string; name: string) =

writeFile buildNims, scriptContent

let cmdLine = "nim e --hints:off " & quoteShell(buildNims)
let cmdLine = "nim e --hints:off -d:atlas " & quoteShell(buildNims)
if os.execShellCmd(cmdLine) != 0:
error c, name, "Nimscript failed: " & cmdLine
else:
Expand Down

0 comments on commit 69063fd

Please sign in to comment.